00001 package Sct_SctApi; 00002 00003 00011 public final class SctApiException extends org.omg.CORBA.UserException 00012 { 00013 public String detail = null; 00014 00015 public SctApiException () 00016 { 00017 super(SctApiExceptionHelper.id()); 00018 } // ctor 00019 00020 public SctApiException (String _detail) 00021 { 00022 super(SctApiExceptionHelper.id()); 00023 detail = _detail; 00024 } // ctor 00025 00026 00027 public SctApiException (String $reason, String _detail) 00028 { 00029 super(SctApiExceptionHelper.id() + " " + $reason); 00030 detail = _detail; 00031 } // ctor 00032 00033 } // class SctApiException