|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.media.jai.util.ImagingException
javax.media.jai.remote.RemoteImagingException
public class RemoteImagingException
RemoteImagingException
is an Exception
thrown
to indicate that an error condition was
encountered during remote image processing. All methods which might
encounter error conditions during remote image processing should
be tagged as throwing this exception, as this is something an
application might want to catch.
From JAI 1.1.2 on, this class is re-parented to
ImagingException
which behaves as a chained exception.
Thus, the cause of a RemoteImagingException
can be
retrieved by using the method getCause
.
Constructor Summary | |
---|---|
RemoteImagingException()
Constructs a RemoteImagingException with no detail
message. |
|
RemoteImagingException(String message)
Constructs a RemoteImagingException with the
specified detail message. |
|
RemoteImagingException(String message,
Throwable cause)
The constructor to accept the cause of this RemoteImagingException and the message that
describes the situation. |
|
RemoteImagingException(Throwable cause)
Constructs a RemoteImagingException with the
provided cause. |
Method Summary |
---|
Methods inherited from class javax.media.jai.util.ImagingException |
---|
getCause, getRootCause, printStackTrace, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public RemoteImagingException()
RemoteImagingException
with no detail
message. A detail message is a String
that describes
this particular exception.
public RemoteImagingException(String message)
RemoteImagingException
with the
specified detail message. A detail message is a String
that describes this particular exception.
message
- the String
that contains a detailed message.public RemoteImagingException(Throwable cause)
RemoteImagingException
with the
provided cause.
cause
- The cause of this RemoteImagingException
.public RemoteImagingException(String message, Throwable cause)
RemoteImagingException
and the message that
describes the situation.
message
- The message that describes the situation.cause
- The cause of this RemoteImagingException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |