Package org.marketcetera.admin
Class NotAuthorizedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.marketcetera.admin.NotAuthorizedException
-
- All Implemented Interfaces:
Serializable
public class NotAuthorizedException extends RuntimeException
Indicates an authorization failure.- Since:
- 1.0.1
- Version:
- $Id$
- Author:
- Colin DuPlantis
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description NotAuthorizedException()Create a new NotAuthorizedException instance.NotAuthorizedException(String inMessage)Create a new NotAuthorizedException instance.NotAuthorizedException(String inMessage, Throwable inCause)Create a new NotAuthorizedException instance.NotAuthorizedException(String inMessage, Throwable inCause, boolean inEnableSuppression, boolean inWritableStackTrace)Create a new NotAuthorizedException instance.NotAuthorizedException(Throwable inCause)Create a new NotAuthorizedException instance.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NotAuthorizedException
public NotAuthorizedException()
Create a new NotAuthorizedException instance.
-
NotAuthorizedException
public NotAuthorizedException(String inMessage)
Create a new NotAuthorizedException instance.- Parameters:
inMessage- aStringvalue
-
NotAuthorizedException
public NotAuthorizedException(Throwable inCause)
Create a new NotAuthorizedException instance.- Parameters:
inCause- aThrowablevalue
-
NotAuthorizedException
public NotAuthorizedException(String inMessage, Throwable inCause)
Create a new NotAuthorizedException instance.- Parameters:
inMessage- aStringvalueinCause- aThrowablevalue
-
NotAuthorizedException
public NotAuthorizedException(String inMessage, Throwable inCause, boolean inEnableSuppression, boolean inWritableStackTrace)
Create a new NotAuthorizedException instance.- Parameters:
inMessage- aStringvalueinCause- aThrowablevalueinEnableSuppression- abooleanvalueinWritableStackTrace- abooleanvalue
-
-