Skip to content
Snippets Groups Projects

SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...

Closed Artur Pedziwilk requested to merge RP-3782-add-docker-desktop-quickstart into 20.10.x
2 files
+ 7
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -39,6 +39,12 @@ public class UnauthorizedObjectAccessException extends UserFailureException
this.objectId = id;
}
public UnauthorizedObjectAccessException(IObjectId id, String message)
{
super("Access denied to object with " + id.getClass().getSimpleName() + " = [" + id + "]. " + message);
this.objectId = id;
}
public UnauthorizedObjectAccessException(List<? extends IObjectId> ids)
{
super("Access denied to at least one of the " + ids.size() + " = [" + abbreviate(ids, 100) + "].");
Loading