1 7 8 package org.omg.CORBA; 9 10 20 21 public final class TIMEOUT extends SystemException { 22 23 27 public TIMEOUT() { 28 this(""); 29 } 30 31 37 public TIMEOUT(String detailMessage) { 38 this(detailMessage, 0, CompletionStatus.COMPLETED_NO); 39 } 40 41 48 public TIMEOUT(int minorCode, 49 CompletionStatus completionStatus) { 50 this("", minorCode, completionStatus); 51 } 52 53 61 public TIMEOUT(String detailMessage, 62 int minorCode, 63 CompletionStatus completionStatus) { 64 super(detailMessage, minorCode, completionStatus); 65 } 66 } 67 | Popular Tags |