public class TextConversionException
extends java.lang.Exception
Constructor and Description |
---|
TextConversionException()
Creates a new instance of
TextConversionException without detail message. |
TextConversionException(java.lang.String msg)
Constructs an instance of
TextConversionException with the specified detail message. |
TextConversionException(java.lang.String msg,
java.lang.Throwable cause)
Constructs an instance of
TextConversionException with
the specified detail message and cause. |
TextConversionException(java.lang.Throwable cause)
Constructs an instance of
TextConversionException with
the specified cause and a detail message of
(cause==null ? |
public TextConversionException()
TextConversionException
without detail message.public TextConversionException(java.lang.String msg)
TextConversionException
with the specified detail message.msg
- the detail messagepublic TextConversionException(java.lang.Throwable cause)
TextConversionException
with
the specified cause and a detail message of
(cause==null ? null : cause.toString())cause
- the cause of this exceptionpublic TextConversionException(java.lang.String msg, java.lang.Throwable cause)
TextConversionException
with
the specified detail message and cause.
Note that the detail message associated with cause
is not
automatically incorporated in this exception's detail message.
msg
- the detail messagecause
- the cause of this exception