Package de.ufinke.cubaja.config
Class ConfigException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.ufinke.cubaja.config.ConfigException
-
- All Implemented Interfaces:
Serializable
public class ConfigException extends Exception
Configuration exception.- Author:
- Uwe Finke
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigException(String msg)
Constructor with message.ConfigException(String msg, Throwable t)
Constructor with message and cause.ConfigException(Throwable t)
Constructor with cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLocalizedMessage()
Returns localized message text.String
getMessage()
Returns message text.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getMessage
public String getMessage()
Returns message text. If this object has no own message text, the message text of the cause is returned.- Overrides:
getMessage
in classThrowable
- Returns:
- message text
-
getLocalizedMessage
public String getLocalizedMessage()
Returns localized message text. If this object has no own localized message text, the localized message text of the cause is returned.- Overrides:
getLocalizedMessage
in classThrowable
- Returns:
- message text
-
-