1 22 package org.jboss.test.excepiiop.interfaces; 23 24 25 31 32 public final class IdlException extends org.omg.CORBA.UserException  33 { 34 public int i = (int)0; 35 public String s = null; 36 37 public IdlException () 38 { 39 super(IdlExceptionHelper.id()); 40 } 42 public IdlException (int _i, String _s) 43 { 44 super(IdlExceptionHelper.id()); 45 i = _i; 46 s = _s; 47 } 49 50 public IdlException (String $reason, int _i, String _s) 51 { 52 super(IdlExceptionHelper.id() + " " + $reason); 53 i = _i; 54 s = _s; 55 } 57 } | Popular Tags |