
org.marketcetera.admin.NotAuthorizedException Maven / Gradle / Ivy
The newest version!
package org.marketcetera.admin;
/* $License$ */
/**
* Indicates an authorization failure.
*
* @author Colin DuPlantis
* @version $Id$
* @since 1.0.1
*/
public class NotAuthorizedException
extends RuntimeException
{
/**
* Create a new NotAuthorizedException instance.
*/
public NotAuthorizedException()
{
}
/**
* Create a new NotAuthorizedException instance.
*
* @param inMessage a String
value
*/
public NotAuthorizedException(String inMessage)
{
super(inMessage);
}
/**
* Create a new NotAuthorizedException instance.
*
* @param inCause a Throwable
value
*/
public NotAuthorizedException(Throwable inCause)
{
super(inCause);
}
/**
* Create a new NotAuthorizedException instance.
*
* @param inMessage a String
value
* @param inCause a Throwable
value
*/
public NotAuthorizedException(String inMessage,
Throwable inCause)
{
super(inMessage,
inCause);
}
/**
* Create a new NotAuthorizedException instance.
*
* @param inMessage a String
value
* @param inCause a Throwable
value
* @param inEnableSuppression a boolean
value
* @param inWritableStackTrace a boolean
value
*/
public NotAuthorizedException(String inMessage,
Throwable inCause,
boolean inEnableSuppression,
boolean inWritableStackTrace)
{
super(inMessage,
inCause,
inEnableSuppression,
inWritableStackTrace);
}
private static final long serialVersionUID = -4546731506980014212L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy