KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > CORBA > UserException


1 package org.omg.CORBA;
2
3 /**
4  * CORBA V2.3 - 1.3 July 1998 (merged version)
5  * last modified: 02/03/99 RT
6  */

7
8 abstract public class UserException
9     extends java.lang.Exception JavaDoc
10     implements org.omg.CORBA.portable.IDLEntity JavaDoc
11 {
12
13     public UserException()
14     {
15         super();
16     }
17
18     public UserException(java.lang.String JavaDoc value)
19     {
20         super(value);
21     }
22 }
23
24
25
Popular Tags