Package com.mku.salmon
Class SecurityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.mku.salmon.SecurityException
-
- All Implemented Interfaces:
java.io.Serializable
public class SecurityException extends java.lang.RuntimeException
Salmon generic security exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SecurityException(java.lang.String msg)
Construct an exception with a specific message.SecurityException(java.lang.String msg, java.lang.Exception ex)
Construct an exception with a specific message and inner exception.
-
-
-
Constructor Detail
-
SecurityException
public SecurityException(java.lang.String msg)
Construct an exception with a specific message.- Parameters:
msg
- The provided message.
-
SecurityException
public SecurityException(java.lang.String msg, java.lang.Exception ex)
Construct an exception with a specific message and inner exception.- Parameters:
msg
- The provided message.ex
- The inner exception.
-
-