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 public class INTERNAL extends org.omg.CORBA.SystemException {
009
010 public INTERNAL() {
011 super(null, 0, CompletionStatus.COMPLETED_MAYBE);
012 }
013
014 public INTERNAL(int minor, CompletionStatus completed) {
015 super(null, minor, completed);
016 }
017
018 public INTERNAL(String reason) {
019 super(reason, 0, CompletionStatus.COMPLETED_MAYBE);
020 }
021
022 public INTERNAL(String reason, int minor, CompletionStatus completed) {
023 super(reason, minor, completed);
024 }
025
026 }