1/*
2 * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
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
26package 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
47public 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
62     * message. A detail message is a String that describes this
63     * particular exception.
64     *
65     * @param msg the detail message.
66     */
67   public KeyManagementException(String msg) {
68        super(msg);
69    }
70
71    /**
72     * Creates a {@code KeyManagementException} with the specified
73     * detail message and cause.
74     *
75     * @param message the detail message (which is saved for later retrieval
76     *        by the {@link #getMessage()} method).
77     * @param cause the cause (which is saved for later retrieval by the
78     *        {@link #getCause()} method).  (A {@code null} value is permitted,
79     *        and indicates that the cause is nonexistent or unknown.)
80     * @since 1.5
81     */
82    public KeyManagementException(String message, Throwable cause) {
83        super(message, cause);
84    }
85
86    /**
87     * Creates a {@code KeyManagementException} with the specified cause
88     * and a detail message of {@code (cause==null ? null : cause.toString())}
89     * (which typically contains the class and detail message of
90     * {@code cause}).
91     *
92     * @param cause the cause (which is saved for later retrieval by the
93     *        {@link #getCause()} method).  (A {@code null} value is permitted,
94     *        and indicates that the cause is nonexistent or unknown.)
95     * @since 1.5
96     */
97    public KeyManagementException(Throwable cause) {
98        super(cause);
99    }
100}
101