Class ServerAuthException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
org.eclipse.jetty.security.ServerAuthException
- All Implemented Interfaces:
 Serializable
A server specific Authentication or Authorization exception.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionCreates a server authentication exception with no message.Creates a server authentication exception with the given message.ServerAuthException(String s, Throwable throwable) Creates a server authentication exception with the given message and cause.ServerAuthException(Throwable throwable) Creates a server authentication exception with the given cause. - 
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
ServerAuthException
public ServerAuthException()Creates a server authentication exception with no message. - 
ServerAuthException
Creates a server authentication exception with the given message.- Parameters:
 s- the exception message
 - 
ServerAuthException
 - 
ServerAuthException
Creates a server authentication exception with the given cause.- Parameters:
 throwable- the underlying cause
 
 -