public class TilesException extends Exception
| Constructor and Description |
|---|
TilesException()
Constructor.
|
TilesException(Exception e)
Create a new
TilesException wrapping an existing exception. |
TilesException(String message)
Constructor.
|
TilesException(String message,
Exception e)
Create a new
TilesException from an existing exception. |
| Modifier and Type | Method and Description |
|---|---|
Exception |
getException()
Return the embedded exception, if any.
|
String |
getMessage()
Return a detail message for this exception.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic TilesException()
public TilesException(String message)
message - The error or warning message.public TilesException(Exception e)
TilesException wrapping an existing exception.
The existing exception will be embedded in the new one, and its message will become the default message for the TilesException.
e - The exception to be wrapped.public TilesException(String message, Exception e)
TilesException from an existing exception.
The existing exception will be embedded in the new one, but the new exception will have its own message.
message - The detail message.e - The exception to be wrapped.public String getMessage()
If there is a embedded exception, and if the TilesException has no detail message of its own, this method will return the detail message from the embedded exception.
getMessage in class Throwablepublic Exception getException()
null if there is none.Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.