public class TilesException
extends java.lang.RuntimeException
Constructor and Description |
---|
TilesException()
Constructor.
|
TilesException(java.lang.String message)
Constructor.
|
TilesException(java.lang.String message,
java.lang.Throwable e)
Create a new
TilesException from an existing exception. |
TilesException(java.lang.Throwable e)
Create a new
TilesException wrapping an existing exception. |
public TilesException()
public TilesException(java.lang.String message)
message
- The error or warning message.public TilesException(java.lang.Throwable 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 cause to be wrapped.public TilesException(java.lang.String message, java.lang.Throwable 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 cause to be wrapped.