Package java.security
Class KeyManagementException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.security.GeneralSecurityException
-
- java.security.KeyException
-
- java.security.KeyManagementException
-
- All Implemented Interfaces:
Serializable
public class KeyManagementException extends KeyException
KeyManagementExceptionis a general exception, thrown to indicate an exception during processing an operation concerning key management.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KeyManagementException()Constructs a new instance ofKeyManagementException.KeyManagementException(String msg)Constructs a new instance ofKeyManagementExceptionwith the given message.KeyManagementException(String message, Throwable cause)Constructs a new instance ofKeyManagementExceptionwith the given message and the cause.KeyManagementException(Throwable cause)Constructs a new instance ofKeyManagementExceptionwith the 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
-
KeyManagementException
public KeyManagementException(String msg)
Constructs a new instance ofKeyManagementExceptionwith the given message.- Parameters:
msg- the detail message for this exception.
-
KeyManagementException
public KeyManagementException()
Constructs a new instance ofKeyManagementException.
-
KeyManagementException
public KeyManagementException(String message, Throwable cause)
Constructs a new instance ofKeyManagementExceptionwith the given message and the cause.- Parameters:
message- the detail message for this exception.cause- the exception which is the cause for this exception.
-
KeyManagementException
public KeyManagementException(Throwable cause)
Constructs a new instance ofKeyManagementExceptionwith the cause.- Parameters:
cause- the exception which is the cause for this exception.
-
-