Package com.helger.base.codec
Class DecodeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.helger.base.codec.DecodeException
- All Implemented Interfaces:
Serializable
Exception occurred in a decoder
- Author:
- Philip Helger
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDecodeException(String sMsg) Constructor with a message.DecodeException(String sMsg, Throwable aCause) Constructor with a message and a cause.DecodeException(Throwable aCause) Constructor with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DecodeException
Constructor with a message.- Parameters:
sMsg- The error message.
-
DecodeException
Constructor with a cause.- Parameters:
aCause- The causing exception.
-
DecodeException
Constructor with a message and a cause.- Parameters:
sMsg- The error message.aCause- The causing exception.
-