Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: netscape/jsdebug/InvalidInfoException.java


1   /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2    *
3    * The contents of this file are subject to the Netscape Public
4    * License Version 1.1 (the "License"); you may not use this file
5    * except in compliance with the License. You may obtain a copy of
6    * the License at http://www.mozilla.org/NPL/
7    *
8    * Software distributed under the License is distributed on an "AS
9    * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10   * implied. See the License for the specific language governing
11   * rights and limitations under the License.
12   *
13   * The Original Code is mozilla.org code.
14   *
15   * The Initial Developer of the Original Code is Netscape
16   * Communications Corporation.  Portions created by Netscape are
17   * Copyright (C) 1998 Netscape Communications Corporation. All
18   * Rights Reserved.
19   *
20   * Contributor(s): 
21   */
22  
23  package netscape.jsdebug;
24  
25  /**
26  * Exception to indicate bad thread state etc...
27  *
28  * @author  John Bandhauer
29  * @author  Nick Thompson
30  * @version 1.0
31  * @since   1.0
32  */
33  public class InvalidInfoException extends Exception {
34      /**
35       * Constructs a InvalidInfoException without a detail message.
36       * A detail message is a String that describes this particular exception.
37       */
38      public InvalidInfoException() {
39    super();
40      }
41  
42      /**
43       * Constructs a InvalidInfoException with a detail message.
44       * A detail message is a String that describes this particular exception.
45       * @param s the detail message
46       */
47      public InvalidInfoException(String s) {
48    super(s);
49      }
50  }