Class CodecException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- net.shibboleth.utilities.java.support.codec.CodecException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DecodingException,EncodingException
@ThreadSafe public class CodecException extends Exception
A general checkedExceptionthrown by the failure of a Codec.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerialization ID.
-
Constructor Summary
Constructors Constructor Description CodecException()Constructor.CodecException(String message)Constructor.CodecException(String message, Throwable cause)Constructor.CodecException(Throwable cause)Constructor.
-
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
Serialization ID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CodecException
public CodecException()
Constructor.
-
CodecException
public CodecException(@Nullable String message)Constructor.- Parameters:
message- exception message
-
CodecException
public CodecException(@Nullable Throwable cause)Constructor.- Parameters:
cause- the cause of the exception
-
-