javax.media.jai.remote
Class RemoteImagingException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--javax.media.jai.remote.RemoteImagingException
- All Implemented Interfaces:
- Serializable
- public class RemoteImagingException
- extends RuntimeException
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.
- Since:
- JAI 1.1
- See Also:
- Serialized Form
RemoteImagingException
public RemoteImagingException()
- Constructs a
RemoteImagingException
with no detail
message. A detail message is a String
that describes
this particular exception.
RemoteImagingException
public RemoteImagingException(String s)
- Constructs a
RemoteImagingException
with the
specified detail message. A detail message is a String
that describes this particular exception.
- Parameters:
s
- the String
that contains a detailed message.