public class FunctorException extends RuntimeException
Constructor and Description |
---|
FunctorException()
Constructs a new
FunctorException without specified
detail message. |
FunctorException(String msg)
Constructs a new
FunctorException with specified
detail message. |
FunctorException(String msg,
Throwable rootCause)
Constructs a new
FunctorException with specified
detail message and nested Throwable root cause. |
FunctorException(Throwable rootCause)
Constructs a new
FunctorException with specified
nested Throwable root cause. |
Modifier and Type | Method and Description |
---|---|
Throwable |
getCause()
Gets the cause of this throwable.
|
void |
printStackTrace()
Prints the stack trace of this exception to the standard error stream.
|
void |
printStackTrace(PrintStream out)
Prints the stack trace of this exception to the specified stream.
|
void |
printStackTrace(PrintWriter out)
Prints the stack trace of this exception to the specified writer.
|
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
public FunctorException()
FunctorException
without specified
detail message.public FunctorException(String msg)
FunctorException
with specified
detail message.msg
- the error message.public FunctorException(Throwable rootCause)
FunctorException
with specified
nested Throwable
root cause.rootCause
- the exception or error that caused this exception
to be thrown.public Throwable getCause()
public void printStackTrace()
printStackTrace
in class Throwable
public void printStackTrace(PrintStream out)
printStackTrace
in class Throwable
out
- the PrintStream
to use for outputpublic void printStackTrace(PrintWriter out)
printStackTrace
in class Throwable
out
- the PrintWriter
to use for outputCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.