public class UnsupportedOperationException4D
extends java.lang.RuntimeException
Constructor and Description |
---|
UnsupportedOperationException4D()
Create an exception without a message.
|
UnsupportedOperationException4D(java.lang.String s)
Create an exception with a message.
|
UnsupportedOperationException4D(java.lang.String message,
java.lang.Throwable cause)
Constructs a
UnsupportedOperationException using
the specified error message, which should give further details
as to the reason for this exception. |
UnsupportedOperationException4D(java.lang.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. |
public UnsupportedOperationException4D()
public UnsupportedOperationException4D(java.lang.String s)
s
- the messagepublic UnsupportedOperationException4D(java.lang.String message, java.lang.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.
message
- the detail message, which should give the reason for
this exception being thrown.cause
- the cause of this exception, or null if the cause
is unknown.public UnsupportedOperationException4D(java.lang.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.
cause
- the cause of this exception, or null if the cause
is unknown.