Class InvalidConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.devonfw.module.security.common.api.exception.InvalidConfigurationException
-
- All Implemented Interfaces:
Serializable
public class InvalidConfigurationException extends RuntimeException
Signals an exception during reading the security configuration- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidConfigurationException(String message)Creates a newInvalidConfigurationExceptionwith the given messageInvalidConfigurationException(String message, Throwable ex)Creates a newInvalidConfigurationExceptionwith the given message and the given cause
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidConfigurationException
public InvalidConfigurationException(String message)
Creates a newInvalidConfigurationExceptionwith the given message- Parameters:
message- error message
-
InvalidConfigurationException
public InvalidConfigurationException(String message, Throwable ex)
Creates a newInvalidConfigurationExceptionwith the given message and the given cause- Parameters:
message- error messageex- cause of the created exception
-
-