info.javelot.functionalj
Class FunctionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by info.javelot.functionalj.FunctionException
All Implemented Interfaces:
Serializable

public class FunctionException
extends RuntimeException

Used to signal exceptions that occur in the use of the FunctionalJ package. This is a subclass of RuntimeException; therefore it is not a strict requirement to handle this exception.

Author:
Copyright © 2006 Frederic Daoud
See Also:
Serialized Form

Constructor Summary
FunctionException()
          Same constructor as parent class.
FunctionException(String p_message)
          Same constructor as parent class.
FunctionException(String p_message, Throwable p_cause)
          Same constructor as parent class.
FunctionException(Throwable p_cause)
          Same constructor as parent class.
 
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

FunctionException

public FunctionException()
Same constructor as parent class.

See Also:
RuntimeException

FunctionException

public FunctionException(String p_message)
Same constructor as parent class.

See Also:
RuntimeException

FunctionException

public FunctionException(String p_message,
                         Throwable p_cause)
Same constructor as parent class.

See Also:
RuntimeException

FunctionException

public FunctionException(Throwable p_cause)
Same constructor as parent class.

See Also:
RuntimeException