Constructors Summary |
---|
public InvalidTypeException()Constructs a new exception with the default detail message.
super("Invalid Type");
|
public InvalidTypeException(String message)Constructs a new exception with the specified detail message.
super(message);
|
public InvalidTypeException(Throwable cause)Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString()) (which typically contains
the class and detail message of cause).
super(cause);
|
public InvalidTypeException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.
super(message, cause);
|