1 /* 2 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 */ 5 6 /* 7 * @(#)ExemptionMechanismException.java 1.4 03/12/19 8 */ 9 10 /* 11 * NOTE: 12 * Because of various external restrictions (i.e. US export 13 * regulations, etc.), the actual source code can not be provided 14 * at this time. This file represents the skeleton of the source 15 * file, so that javadocs of the API can be created. 16 */ 17 18 package javax.crypto; 19 20 import java.security.GeneralSecurityException; 21 22 /** 23 * This is the generic ExemptionMechanism exception. 24 * 25 * @version 1.4, 12/19/03 26 * @since 1.4 27 */ 28 public class ExemptionMechanismException extends GeneralSecurityException 29 { 30 31 /** 32 * Constructs a ExemptionMechanismException with no detailed message. 33 * (A detailed message is a String that describes this particular 34 * exception.) 35 */ 36 public ExemptionMechanismException() { } 37 38 /** 39 * Constructs a ExemptionMechanismException with the specified 40 * detailed message. (A detailed message is a String that describes 41 * this particular exception.) 42 * 43 * @param msg the detailed message. 44 */ 45 public ExemptionMechanismException(String msg) { } 46 } 47