com.fatwire.agent
Class NotFoundException

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

public class NotFoundException
extends AgentException

This exception is thrown when a requested object was not found. For example IItem.getItemByID throws NotFoundException exception when an item with the requested id does not exist.

See Also:
Serialized Form

Constructor Summary
NotFoundException()
           
NotFoundException(java.lang.String message)
           
NotFoundException(java.lang.String message, java.lang.Throwable cause)
           
NotFoundException(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

NotFoundException

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

NotFoundException

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

NotFoundException

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

NotFoundException

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