KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cz > cuni > sofa > lib > UserException


1 /* $Id: UserException.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
2
3 /* This code is based on the OMG's IDL Java Language mapping
4  * definitions (OMG document formal/99-06-02).
5  */

6 package cz.cuni.sofa.lib;
7
8 abstract public class UserException extends java.lang.Exception JavaDoc implements cz.cuni.sofa.lib.CDLEntity {
9
10   public UserException () {
11     super();
12   }
13
14   public UserException (java.lang.String JavaDoc value) {
15     super(value);
16   }
17
18   public UserException (java.lang.String JavaDoc value, Throwable JavaDoc cause) {
19     super(value, cause);
20   }
21
22 }
23
24
25
Popular Tags