Class SecurityException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.plugin.security.SecurityException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class SecurityException extends IgniteException Common security exception for the grid.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description SecurityException(String msg)Constructs security grid exception with given message.SecurityException(String msg, @Nullable Throwable cause)Constructs security grid exception with given message and cause.SecurityException(Throwable cause)Creates new security grid exception given throwable as a cause and source of error message.
 - 
Method Summary- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
SecurityExceptionpublic SecurityException(String msg, @Nullable @Nullable Throwable cause) Constructs security grid exception with given message and cause.- Parameters:
- msg- Exception message.
- cause- Exception cause.
 
 - 
SecurityExceptionpublic SecurityException(Throwable cause) Creates new security grid exception given throwable as a cause and source of error message.- Parameters:
- cause- Non-null throwable cause.
 
 - 
SecurityExceptionpublic SecurityException(String msg) Constructs security grid exception with given message.- Parameters:
- msg- Exception message.
 
 
- 
 
-