public class NotSupportedException extends Exception
Modifier and Type | Field and Description |
---|---|
private static long |
serialVersionUID
Included to satisfy Serializable interface
|
Constructor and Description |
---|
NotSupportedException()
Creates an exception where the message and cause are
set to null.
|
NotSupportedException(String message)
Creates an exception where the message is specified but the
cause is set to null.
|
NotSupportedException(String message,
Throwable cause)
Creates an exception where both the message and cause
are specified.
|
NotSupportedException(Throwable cause)
Creates an exception where the cause is specified but the
message is set to null.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
private static final long serialVersionUID
public NotSupportedException()
public NotSupportedException(String message)
message
- Message describing exceptionpublic NotSupportedException(Throwable cause)
cause
- Cause of exceptionpublic NotSupportedException(String message, Throwable cause)
message
- Message describing exceptioncause
- Cause of exception