com.fatwire.agent
Class IOException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.fatwire.agent.AgentException
              extended by com.fatwire.agent.IOException
All Implemented Interfaces:
java.io.Serializable

public class IOException
extends AgentException

This exception is thrown when an I/O operation fails. For example IItem.getInputStream throws IOException exception for the file system connector implementation when the file was removed (after this item was constructed).

See Also:
Serialized Form

Constructor Summary
IOException()
           
IOException(java.lang.String message)
           
IOException(java.lang.String message, java.lang.Throwable cause)
           
IOException(java.lang.Throwable cause)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IOException

public IOException()
See Also:
Exception.Exception()

IOException

public IOException(java.lang.String message,
                   java.lang.Throwable cause)
Parameters:
message - error reason.
See Also:
Exception.Exception(java.lang.String, java.lang.Throwable)

IOException

public IOException(java.lang.String message)
Parameters:
message - error reason.
See Also:
Exception.Exception(java.lang.String)

IOException

public IOException(java.lang.Throwable cause)
See Also:
Exception.Exception(java.lang.Throwable)