java.lang
Class UnsupportedOperationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.UnsupportedOperationException
- All Implemented Interfaces:
- java.io.Serializable
- public class UnsupportedOperationException
- extends RuntimeException
This exception is thrown by an object when an operation is
requested of it that it does not support.
- Since:
- 1.2
| Nested classes inherited from class java.lang.Throwable |
|
| Fields inherited from class java.lang.Throwable |
|
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
serialVersionUID
private static final long serialVersionUID
- Compatible with JDK 1.2+.
- See Also:
- Constant Field Values
UnsupportedOperationException
public UnsupportedOperationException()
- Create an exception without a message.
UnsupportedOperationException
public UnsupportedOperationException(String s)
- Create an exception with a message.
UnsupportedOperationException
public UnsupportedOperationException(String message,
Throwable cause)
Constructs a UnsupportedOperationException using
the specified error message, which should give further details
as to the reason for this exception. The specified cause
Throwable may be used to provide additional history,
with regards to the root of the problem. It is perfectly valid
for this to be null, if the cause of the problem is unknown.
Note: the detail message from the cause is not
automatically incorporated into the resulting detail message of
this exception.
- Since:
- 1.5
UnsupportedOperationException
public UnsupportedOperationException(Throwable cause)
Constructs a UnsupportedOperationException using
the specified cause Throwable, which may be used
to provide additional history, with regards to the root of the
problem. It is perfectly valid for this to be null, if the
cause of the problem is unknown.
The detail message is automatically constructed from the detail
message of the supplied causal exception. If the cause is null,
then the detail message will also be null. Otherwise, the detail
message of this exception will be that of the causal exception.
This makes this constructor very useful for simply wrapping another
exception.
- Since:
- 1.5