Constructors Summary |
---|
public NotSupportedException()Constructs a new instance with null as its detail message. super();
|
public NotSupportedException(String message)Constructs a new instance with the specified detail message.
super(message);
|
public NotSupportedException(Throwable cause)Constructs a new throwable with the specified cause.
super(cause);
|
public NotSupportedException(String message, Throwable cause)Constructs a new throwable with the specified detail message and cause.
super(message, cause);
|
public NotSupportedException(String message, String errorCode)Constructs a new throwable with the specified detail message and
error code.
super(message, errorCode);
|