public class NotSupportedException
extends java.lang.RuntimeException
Does not support exceptions.
The exception is thrown for the operation that is not supported.
Constructor and Description |
---|
NotSupportedException()
Default constructor.
|
NotSupportedException(java.lang.String message)
Constructs a new exception with specified details.
|
NotSupportedException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with specified details and causes.
|
NotSupportedException(java.lang.Throwable cause)
Constructs a new exception with causes.
|
public NotSupportedException()
Default constructor.
public NotSupportedException(java.lang.String message)
Constructs a new exception with specified details.
message
- detailed message.public NotSupportedException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with specified details and causes.
message
- detailed message.cause
- The cause.public NotSupportedException(java.lang.Throwable cause)
Constructs a new exception with causes.
cause
- The cause.