1 6 7 package SOFA.SOFAnet.Local.RMI; 8 9 13 public class RMILocalException extends Exception  14 { 15 16 17 public RMILocalException() 18 { 19 } 20 21 public RMILocalException(String message) 22 { 23 super(message); 24 } 25 26 public RMILocalException(String message, Throwable cause) 27 { 28 super(message, cause); 29 } 30 31 public RMILocalException(Throwable cause) 32 { 33 super(cause); 34 } 35 } 36 | Popular Tags |