01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: abstract public class SystemException extends
07: java.lang.RuntimeException {
08:
09: public int minor;
10: public CompletionStatus completed;
11:
12: protected SystemException(String reason, int minor,
13: CompletionStatus completed) {
14: super(reason);
15: this.minor = minor;
16: this.completed = completed;
17: }
18: }
|