Package com.activeviam.fwk
Class ActiveViamSecurityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.activeviam.fwk.ActiveViamRuntimeException
-
- com.activeviam.fwk.ActiveViamSecurityException
-
- All Implemented Interfaces:
Serializable
public class ActiveViamSecurityException extends ActiveViamRuntimeException
Security Exception thrown within a ActiveViam component.- Author:
- ActiveViam
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActiveViamSecurityException()Constructor.ActiveViamSecurityException(String message)Constructor.ActiveViamSecurityException(String messageKey, Object... parameters)Constructor.ActiveViamSecurityException(String message, Throwable cause)Constructor.ActiveViamSecurityException(Throwable cause)Constructor.ActiveViamSecurityException(Throwable exception, String messageKey, Object... parameters)Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ActiveViamSecurityException
public ActiveViamSecurityException()
Constructor.
-
ActiveViamSecurityException
public ActiveViamSecurityException(String messageKey, Object... parameters)
Constructor.- Parameters:
messageKey- message templateparameters- parameters to inject into the message template
-
ActiveViamSecurityException
public ActiveViamSecurityException(String message, Throwable cause)
Constructor.- Parameters:
message- the detailed messagecause- the cause of this exception
-
ActiveViamSecurityException
public ActiveViamSecurityException(String message)
Constructor.- Parameters:
message- the detailed message
-
ActiveViamSecurityException
public ActiveViamSecurityException(Throwable exception, String messageKey, Object... parameters)
Constructor.- Parameters:
exception- the cause of this exceptionmessageKey- message templateparameters- parameters to inject into the message template
-
ActiveViamSecurityException
public ActiveViamSecurityException(Throwable cause)
Constructor.- Parameters:
cause- the cause of this exception
-
-