001 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 002 duplicate and use this code are hereby granted provided that this 003 copyright notice is included. 004 *****/ 005 006 package org.omg.CORBA; 007 008 abstract public class SystemException extends java.lang.RuntimeException { 009 010 public int minor; 011 public CompletionStatus completed; 012 013 protected SystemException(String reason, int minor, 014 CompletionStatus completed) { 015 super(reason); 016 this.minor = minor; 017 this.completed = completed; 018 } 019 }