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

Quick Search    Search Deep

Source code: com/voytechs/html/event/EventException.java


1   /*
2    * File: EventException.java
3    * Auth: Mark Bednarczyk
4    * Date: DATE
5    *   Id: $Id: EventException.java,v 1.1.1.1 2002/01/23 23:52:47 voytechs Exp $
6    ********************************************
7    * $Log: EventException.java,v $
8    * Revision 1.1.1.1  2002/01/23 23:52:47  voytechs
9    * Initial public release, BETA 1.0 - voytechs
10   *
11   */
12  package com.voytechs.html.event;
13  
14  import java.lang.*;
15  
16  /**
17   * 
18   */
19  public class EventException 
20    extends Throwable {
21  
22    /* Internal attributes */
23  
24    /**
25     *
26     * @param
27     * @exception
28     */
29    public EventException(String msg) {
30      super(msg);
31    }
32  
33    /**
34     * Test function for EventException
35     * @param args command line arguments
36     */
37    public static void main(String [] args) {
38    }
39  
40  } /* END OF: EventException */