1 /* 2 * @(#)SSLKeyException.java 1.7 04/02/16 3 * 4 * Copyright (c) 2004 Sun Microsystems, Inc. All Rights Reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 /* 9 * NOTE: 10 * Because of various external restrictions (i.e. US export 11 * regulations, etc.), the actual source code can not be provided 12 * at this time. This file represents the skeleton of the source 13 * file, so that javadocs of the API can be created. 14 */ 15 16 package javax.net.ssl; 17 18 /** 19 * Reports a bad SSL key. Normally, this indicates misconfiguration 20 * of the server or client SSL certificate and private key. 21 * 22 * @since 1.4 23 * @version 1.11 24 * @author David Brownell 25 */ 26 public class SSLKeyException extends SSLException 27 { 28 29 /** 30 * Constructs an exception reporting a key management error 31 * found by an SSL subsystem. 32 * 33 * @param reason describes the problem. 34 */ 35 public SSLKeyException(String reason) { } 36 } 37