public class IndexException extends Exception
| Constructor and Description |
|---|
IndexException()
Default constructor.
|
IndexException(String message)
Constructs with message.
|
IndexException(String message,
Throwable causeIn)
Constructs with message and exception.
|
IndexException(Throwable causeIn)
Constructs with chained exception.
|
| Modifier and Type | Method and Description |
|---|---|
Throwable |
getException()
Retrieves nested exception.
|
void |
printStackTrace()
Print the stack trace to System.err.
|
void |
printStackTrace(PrintStream ps)
Print the stack trace to a print stream.
|
void |
printStackTrace(PrintWriter pw)
Print the stack trace to a print writer.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toStringpublic IndexException()
public IndexException(String message)
message - - The message to throw in the exceptionpublic IndexException(Throwable causeIn)
causeIn - - The throwable cause in the exception.public final Throwable getException()
public final void printStackTrace()
printStackTrace in class Throwablepublic final void printStackTrace(PrintStream ps)
printStackTrace in class Throwableps - - the print stream.public void printStackTrace(PrintWriter pw)
printStackTrace in class Throwablepw - - the print writer.Copyright © 2017. All Rights Reserved.