public class EncodingException extends IOException
| Constructor and Description |
|---|
EncodingException()
Constructs an
IOException with null as its error detail message. |
EncodingException(String s)
Constructs an
IOException with the specified detail message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic EncodingException()
IOException with null as its error detail message.public EncodingException(String s)
IOException with the specified detail message. The error message string s
can later be retrieved by the Throwable.getMessage() method of class
java.lang.Throwable.s - the detail message.