Class ConfigurationFailureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ch.systemsx.cisd.common.exceptions.HighLevelException
-
- ch.systemsx.cisd.common.exceptions.ConfigurationFailureException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigurationFailureException extends HighLevelException
TheConfigurationFailureException
is the super class of all exceptions that have their cause in an inappropriate configuration of the system. This implies that an application administrator can fix the problem.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigurationFailureException(java.lang.String message)
ConfigurationFailureException(java.lang.String message, java.lang.Throwable cause)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfigurationFailureException
fromTemplate(java.lang.String messageTemplate, java.lang.Object... args)
Creates anConfigurationFailureException
using aFormatter
.static ConfigurationFailureException
fromTemplate(java.lang.Throwable cause, java.lang.String messageTemplate, java.lang.Object... args)
Creates anConfigurationFailureException
using aFormatter
.-
Methods inherited from class ch.systemsx.cisd.common.exceptions.HighLevelException
isRetriable, isRetriable
-
-
-
-
Method Detail
-
fromTemplate
public static ConfigurationFailureException fromTemplate(java.lang.String messageTemplate, java.lang.Object... args)
Creates anConfigurationFailureException
using aFormatter
.
-
fromTemplate
public static ConfigurationFailureException fromTemplate(java.lang.Throwable cause, java.lang.String messageTemplate, java.lang.Object... args)
Creates anConfigurationFailureException
using aFormatter
.
-
-