Module io.helidon.config.encryption
Package io.helidon.config.encryption
Class ConfigEncryptionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.helidon.config.encryption.ConfigEncryptionException
-
- All Implemented Interfaces:
Serializable
public class ConfigEncryptionException extends RuntimeException
Secure config related exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigEncryptionException(String message)
Constructs a new config encryption exception with the specified detail message.ConfigEncryptionException(String message, Throwable cause)
Construct with a message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ConfigEncryptionException
public ConfigEncryptionException(String message)
Constructs a new config encryption exception with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
ConfigEncryptionException
public ConfigEncryptionException(String message, Throwable cause)
Construct with a message.- Parameters:
message
- message with descriptive information about the failurecause
- cause of this exception- See Also:
Exception(String, Throwable)
-
-