nl.uu.cs.treewidth.input
Class InputException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by nl.uu.cs.treewidth.input.InputException
All Implemented Interfaces:
java.io.Serializable

public class InputException
extends java.lang.Exception

Exception to be thrown from GraphInput implementations. Exists for the benefit of GraphInput.get()'s exception specification. Useful in a GraphInput that doesn't want to catch an exception that it itself encountered.

Author:
tw team
See Also:
Serialized Form

Field Summary
 java.lang.Exception originalException
          The exception that is being
 
Constructor Summary
InputException(java.lang.Exception e)
          Remembers an original Exception.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

originalException

public java.lang.Exception originalException
The exception that is being

Constructor Detail

InputException

public InputException(java.lang.Exception e)
Remembers an original Exception.

Parameters:
e - The original
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Throwable