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

Constructor Summary
RemoteImagingException()
          Constructs a RemoteImagingException with no detail message.
RemoteImagingException(String s)
          Constructs a RemoteImagingException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.