public class ConfigurationException extends RuntimeException
| Constructor and Description |
|---|
ConfigurationException(String message,
Object... args)
Constructs a new exception with the specified detail message.
|
ConfigurationException(Throwable cause)
Constructs a new exception with the specified cause.
|
ConfigurationException(Throwable cause,
String message,
Object... args)
Constructs a new exception with the specified detail message and cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ConfigurationException(String message, Object... args)
message - the detailed message, which is saved for later retrieval by the
Throwable.getMessage() methodargs - arguments to the message format, as in
String.format(String, Object...)public ConfigurationException(Throwable cause, String message, Object... args)
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)message - the detail message, which is saved for later retrieval by the
Throwable.getMessage() methodargs - arguments to the message format, as in
String.format(String, Object...)public ConfigurationException(Throwable cause)
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.Copyright © 2023. All rights reserved.