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

Quick Search    Search Deep

Source code: mlsub/typing/lowlevel/InternalError.java


1   /**************************************************************************/
2   /*                           B O S S A                                    */
3   /*        A simple imperative object-oriented research language           */
4   /*                   (c)  Daniel Bonniot 1999                             */
5   /*                                                                        */
6   /*  This program is free software; you can redistribute it and/or modify  */
7   /*  it under the terms of the GNU General Public License as published by  */
8   /*  the Free Software Foundation; either version 2 of the License, or     */
9   /*  (at your option) any later version.                                   */
10  /*                                                                        */
11  /**************************************************************************/
12  
13  // File    : InternalError.java
14  // Created : Wed May 31 10:42:34 2000 by Daniel Bonniot
15  //$Modified: Wed May 31 10:43:46 2000 by Daniel Bonniot $
16  
17  package mlsub.typing.lowlevel;
18  
19  /**
20   * Unexpected error.
21   *
22   * Denotes a bug in the package, or a misusage of it.
23   * 
24   * @author Daniel Bonniot
25   */
26  
27  public class InternalError extends Error
28  {
29    public InternalError(String msg)
30    {
31      super(msg);
32    }
33  }