public class DataFormatException
extends java.lang.RuntimeException
| Constructor and Description |
|---|
DataFormatException()
Creates a new instance of
DataFormatException without detail message. |
DataFormatException(java.lang.String msg)
Constructs an instance of
DataFormatException with the specified detail message. |
DataFormatException(java.lang.String msg,
java.lang.Exception exc)
Create a new instance of
DataFormatException with the given
error message and the given root cause for the exception. |
public DataFormatException()
DataFormatException without detail message.public DataFormatException(java.lang.String msg)
DataFormatException with the specified detail message.msg - the detail message.public DataFormatException(java.lang.String msg,
java.lang.Exception exc)
DataFormatException with the given
error message and the given root cause for the exception.msg - descriptive message for exceptionexc - originating exception object (i.e., causing this exception)