1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
2 duplicate and use this code are hereby granted provided that this
3 copyright notice is included.
4 *****/
5
6 package org.omg.CORBA;
7
8 abstract public class SystemException extends java.lang.RuntimeException {
9
10 public int minor;
11 public CompletionStatus completed;
12
13 protected SystemException(String reason, int minor,
14 CompletionStatus completed) {
15 super(reason);
16 this.minor = minor;
17 this.completed = completed;
18 }
19 }