1 package com.sun.enterprise.util.diagnostics; 2 3 /* 4 * The contents of this file are subject to the terms 5 * of the Common Development and Distribution License 6 * (the License). You may not use this file except in 7 * compliance with the License. 8 * 9 * You can obtain a copy of the license at 10 * https://glassfish.dev.java.net/public/CDDLv1.0.html or 11 * glassfish/bootstrap/legal/CDDLv1.0.txt. 12 * See the License for the specific language governing 13 * permissions and limitations under the License. 14 * 15 * When distributing Covered Code, include this CDDL 16 * Header Notice in each file and include the License file 17 * at glassfish/bootstrap/legal/CDDLv1.0.txt. 18 * If applicable, add the following below the CDDL Header, 19 * with the fields enclosed by brackets [] replaced by 20 * you own identifying information: 21 * "Portions Copyrighted [year] [name of copyright owner]" 22 * 23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24 */ 25 26 /** 27 * The class <code>CallerInfoException</code> is used only in the util package 28 * to signal errors while trying to create a CallerInfo object 29 * 30 * @author Byron Nevins 31 * @version 1.1, 05/31/00 32 * @see netscape.blizzard.util.CallerInfo 33 * @since iAB 6.0 34 */ 35 36 public class CallerInfoException extends Exception 37 { 38 // note: ctor not supposed to be public! 39 CallerInfoException(String s) 40 { 41 super(s); 42 } 43 }