Package com.sun.xml.wss
Class NonceManager.NonceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.xml.wss.XWSSecurityException
-
- com.sun.xml.wss.NonceManager.NonceException
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- NonceManager
public static class NonceManager.NonceException extends XWSSecurityException
Exception to be thrown when an Error in processing received nonces occurs. A Nonce-replay would also be indicated by a NonceException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NonceException(String message)
Constructor specifying the message string.NonceException(String message, Throwable cause)
Constructor specifying the message string and a nested exceptionNonceException(Throwable cause)
Constructor specifying a nested exception
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NonceException
public NonceException(String message)
Constructor specifying the message string.- Parameters:
message
- the exception message string
-
NonceException
public NonceException(String message, Throwable cause)
Constructor specifying the message string and a nested exception- Parameters:
message
- the exception message stringcause
- the nested exception as a Throwable
-
NonceException
public NonceException(Throwable cause)
Constructor specifying a nested exception- Parameters:
cause
- the nested exception as a Throwable
-
-