< prev index next >

src/java.base/share/classes/java/security/KeyManagementException.java

Print this page




  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.security;
  27 
  28 /**
  29  * This is the general key management exception for all operations
  30  * dealing with key management. Examples of subclasses of
  31  * KeyManagementException that developers might create for
  32  * giving more detailed information could include:
  33  *
  34  * <ul>
  35  * <li>KeyIDConflictException
  36  * <li>KeyAuthorizationFailureException
  37  * <li>ExpiredKeyException
  38  * </ul>
  39  *
  40  * @author Benjamin Renaud

  41  *
  42  * @see Key
  43  * @see KeyException
  44  */
  45 
  46 public class KeyManagementException extends KeyException {
  47 
  48     private static final long serialVersionUID = 947674216157062695L;
  49 
  50     /**
  51      * Constructs a KeyManagementException with no detail message. A
  52      * detail message is a String that describes this particular
  53      * exception.
  54      */
  55     public KeyManagementException() {
  56         super();
  57     }
  58 
  59      /**
  60      * Constructs a KeyManagementException with the specified detail




  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.security;
  27 
  28 /**
  29  * This is the general key management exception for all operations
  30  * dealing with key management. Examples of subclasses of
  31  * KeyManagementException that developers might create for
  32  * giving more detailed information could include:
  33  *
  34  * <ul>
  35  * <li>KeyIDConflictException
  36  * <li>KeyAuthorizationFailureException
  37  * <li>ExpiredKeyException
  38  * </ul>
  39  *
  40  * @author Benjamin Renaud
  41  * @since 1.1
  42  *
  43  * @see Key
  44  * @see KeyException
  45  */
  46 
  47 public class KeyManagementException extends KeyException {
  48 
  49     private static final long serialVersionUID = 947674216157062695L;
  50 
  51     /**
  52      * Constructs a KeyManagementException with no detail message. A
  53      * detail message is a String that describes this particular
  54      * exception.
  55      */
  56     public KeyManagementException() {
  57         super();
  58     }
  59 
  60      /**
  61      * Constructs a KeyManagementException with the specified detail


< prev index next >