Package org.apache.mina.proxy
Class ProxyAuthException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.security.sasl.SaslException
-
- org.apache.mina.proxy.ProxyAuthException
-
- All Implemented Interfaces:
Serializable
public class ProxyAuthException extends SaslException
ProxyAuthException.java - This class extendsSaslException
and represents an authentication failure to the proxy.- Since:
- MINA 2.0.0-M3
- Author:
- Apache MINA Project
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyAuthException(String message)
ProxyAuthException(String message, Throwable ex)
-
Method Summary
-
Methods inherited from class javax.security.sasl.SaslException
getCause, initCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
ProxyAuthException
public ProxyAuthException(String message)
- Parameters:
message
- The detail message- See Also:
SaslException(String)
-
ProxyAuthException
public ProxyAuthException(String message, Throwable ex)
- Parameters:
message
- The detail messageex
- The exception's cause- See Also:
SaslException(String, Throwable)
-
-