public class

FunctorException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.apache.commons.collections.FunctorException

Class Overview

Runtime exception thrown from functors. If required, a root cause error can be wrapped within this one.

Summary

Public Constructors
FunctorException()
Constructs a new FunctorException without specified detail message.
FunctorException(String msg)
Constructs a new FunctorException with specified detail message.
FunctorException(Throwable rootCause)
Constructs a new FunctorException with specified nested Throwable root cause.
FunctorException(String msg, Throwable rootCause)
Constructs a new FunctorException with specified detail message and nested Throwable root cause.
Public Methods
Throwable getCause()
Gets the cause of this throwable.
void printStackTrace(PrintWriter out)
Prints the stack trace of this exception to the specified writer.
void printStackTrace(PrintStream out)
Prints the stack trace of this exception to the specified stream.
void printStackTrace()
Prints the stack trace of this exception to the standard error stream.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public FunctorException ()

Constructs a new FunctorException without specified detail message.

public FunctorException (String msg)

Constructs a new FunctorException with specified detail message.

Parameters
msg the error message.

public FunctorException (Throwable rootCause)

Constructs a new FunctorException with specified nested Throwable root cause.

Parameters
rootCause the exception or error that caused this exception to be thrown.

public FunctorException (String msg, Throwable rootCause)

Constructs a new FunctorException with specified detail message and nested Throwable root cause.

Parameters
msg the error message.
rootCause the exception or error that caused this exception to be thrown.

Public Methods

public Throwable getCause ()

Gets the cause of this throwable.

Returns
  • the cause of this throwable, or null

public void printStackTrace (PrintWriter out)

Prints the stack trace of this exception to the specified writer.

Parameters
out the PrintWriter to use for output

public void printStackTrace (PrintStream out)

Prints the stack trace of this exception to the specified stream.

Parameters
out the PrintStream to use for output

public void printStackTrace ()

Prints the stack trace of this exception to the standard error stream.