Package org.apache.ignite.lang
Class RowSecurityViolationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.lang.RowSecurityViolationException
- All Implemented Interfaces:
Serializable,TraceableException
Exception is raised when a user tries to violate one of the configured row-level security policies.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRowSecurityViolationException(UUID traceId, int code, String message, @Nullable Throwable cause) Creates a new row security violation exception with the given trace id, error code, detail message and cause. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceIdMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
RowSecurityViolationException
public RowSecurityViolationException() -
RowSecurityViolationException
public RowSecurityViolationException(UUID traceId, int code, String message, @Nullable @Nullable Throwable cause) Creates a new row security violation exception with the given trace id, error code, detail message and cause.- Parameters:
traceId- The unique trace Idcode- The error codemessage- The exception messagecause- The exception cause
-