Package org.opentcs.configuration
Class ConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.opentcs.configuration.ConfigurationException
- All Implemented Interfaces:
java.io.Serializable
public class ConfigurationException
extends java.lang.RuntimeException
Thrown when a configuration error occured.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description ConfigurationException()
Constructs a new instance with no detail message.ConfigurationException(java.lang.String message)
Constructs a new instance with the specified detail message.ConfigurationException(java.lang.String message, java.lang.Throwable cause)
Constructs a new instance with the specified detail message and cause.ConfigurationException(java.lang.Throwable cause)
Constructs a new instance with the specified cause and a detail message of(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
). -
Method Summary
-
Constructor Details
-
ConfigurationException
public ConfigurationException()Constructs a new instance with no detail message. -
ConfigurationException
public ConfigurationException(java.lang.String message)Constructs a new instance with the specified detail message.- Parameters:
message
- The detail message.
-
ConfigurationException
public ConfigurationException(java.lang.String message, java.lang.Throwable cause)Constructs a new instance with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The exception's cause.
-
ConfigurationException
public ConfigurationException(java.lang.Throwable cause)Constructs a new instance with the specified cause and a detail message of(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- The exception's cause.
-