KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* $Id: SystemException.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 SystemException extends java.lang.RuntimeException JavaDoc {
9
10     public int minor;
11
12     protected SystemException() {
13         super();
14     }
15
16     protected SystemException(String JavaDoc reason, int minor) {
17         super(reason);
18         this.minor = minor;
19     }
20
21     protected SystemException(String JavaDoc reason) {
22         super(reason);
23     }
24
25     protected SystemException(String JavaDoc reason, Throwable JavaDoc cause) {
26         super(reason, cause);
27     }
28 }
29
Popular Tags