public class InvalidDataException extends BaseException
Modifier and Type | Field and Description |
---|---|
private static long |
serialVersionUID |
Constructor and Description |
---|
InvalidDataException()
Create a new
InvalidDataException object. |
InvalidDataException(java.lang.String message)
Create a new
InvalidDataException object with the
specified message . |
InvalidDataException(java.lang.String message,
java.lang.Throwable cause)
Create a new
InvalidDataException object with the
specified message . |
InvalidDataException(java.lang.Throwable cause)
Create a new
InvalidDataException object. |
private static final long serialVersionUID
public InvalidDataException()
InvalidDataException
object.public InvalidDataException(java.lang.Throwable cause)
InvalidDataException
object.cause
- Throwable object that caused this exception.public InvalidDataException(java.lang.String message)
InvalidDataException
object with the
specified message
.message
- The message to throw with the exceptionpublic InvalidDataException(java.lang.String message, java.lang.Throwable cause)
InvalidDataException
object with the
specified message
.message
- The message to throw with the exceptioncause
- Throwable object that caused this exception.