public class LocalizerResourceException
extends java.lang.RuntimeException
| Constructor and Description |
|---|
LocalizerResourceException()
Constructs an
LocalizerResourceException with null
as its error detail message. |
LocalizerResourceException(java.lang.String message)
Constructs an
LocalizerResourceException with the specified detail message. |
LocalizerResourceException(java.lang.String message,
java.lang.Throwable cause)
Constructs an
LocalizerResourceException with the specified detail message
and cause. |
LocalizerResourceException(java.lang.Throwable cause)
Constructs an
LocalizerResourceException with the specified cause and a
detail message of (cause==null ? null : cause.toString()) |
public LocalizerResourceException()
LocalizerResourceException with null
as its error detail message.public LocalizerResourceException(java.lang.String message)
LocalizerResourceException with the specified detail message.message - The detail message (which is saved for later retrieval
by the Throwable.getMessage() method)public LocalizerResourceException(java.lang.String message,
java.lang.Throwable cause)
LocalizerResourceException with the specified detail message
and cause.message - The detail message (which is saved for later retrieval
by the Throwable.getMessage() method)cause - The cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)public LocalizerResourceException(java.lang.Throwable cause)
LocalizerResourceException with the specified cause and a
detail message of (cause==null ? null : cause.toString())cause - The cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)