kaapo.filemanager
Class ComponentNotSupportedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by kaapo.filemanager.ComponentNotSupportedException
All Implemented Interfaces:
Serializable

public class ComponentNotSupportedException
extends Exception

Exception for plugin classes to throw if they cannot handle some project components.

Author:
paltamaa
See Also:
Serialized Form

Constructor Summary
ComponentNotSupportedException()
          Constructs a new ComponentNotSupportedException with null as its detailed message.
ComponentNotSupportedException(String s)
          Constructs a new ComponentNotSupportedException with the specified detail message.
ComponentNotSupportedException(String s, Throwable cause)
          Constructs a new ComponentNotSupportedException with a specified detail message and a Throwable cause that can be retrieved with getCause().
ComponentNotSupportedException(Throwable cause)
          Creates a new ComponentNotSupportedException with a null detailed message with a 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

ComponentNotSupportedException

public ComponentNotSupportedException()
Constructs a new ComponentNotSupportedException with null as its detailed message.


ComponentNotSupportedException

public ComponentNotSupportedException(String s)
Constructs a new ComponentNotSupportedException with the specified detail message.

Parameters:
s - the detail message

ComponentNotSupportedException

public ComponentNotSupportedException(String s,
                                      Throwable cause)
Constructs a new ComponentNotSupportedException with a specified detail message and a Throwable cause that can be retrieved with getCause().

Parameters:
s - the detail message
cause - the cause of this exception

ComponentNotSupportedException

public ComponentNotSupportedException(Throwable cause)
Creates a new ComponentNotSupportedException with a null detailed message with a cause.

Parameters:
cause -