1 /* 2 * @(#)SSLProtocolException.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 an error in the operation of the SSL protocol. Normally 20 * this indicates a flaw in one of the protocol implementations. 21 * 22 * @since 1.4 23 * @version 1.11 24 * @author David Brownell 25 */ 26 public class SSLProtocolException extends SSLException 27 { 28 29 /** 30 * Constructs an exception reporting an SSL protocol error 31 * detected by an SSL subsystem. 32 * 33 * @param reason describes the problem. 34 */ 35 public SSLProtocolException(String reason) { } 36 } 37