com.fatwire.agent
Class FeatureNotSupportedException

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

public class FeatureNotSupportedException
extends AgentException

This exception is thrown when a particular functionality is unavailable or just not implemented, e.g. IItem.getInputStream in the file system connector implementation throws FeatureNotSupportedException exception for folders as folders don't have any primary binary data associated with them.

See Also:
Serialized Form

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

FeatureNotSupportedException

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

FeatureNotSupportedException

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

FeatureNotSupportedException

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

FeatureNotSupportedException

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