abstract public class CreditDeniedExceptionHelper {
private static org.omg.CORBA.ORB _orb() {
return org.omg.CORBA.ORB.init();
}
public static borland.reference.creditapproval.CORBAInterface.CreditDeniedException read(org.omg.CORBA.portable.InputStream _input) {
if(!_input.read_string().equals(id())) {
throw new org.omg.CORBA.MARSHAL("Mismached repository id");
}
borland.reference.creditapproval.CORBAInterface.CreditDeniedException result = new borland.reference.creditapproval.CORBAInterface.CreditDeniedException();
result.reason = _input.read_string();
return result;
}
public static void write(org.omg.CORBA.portable.OutputStream _output, borland.reference.creditapproval.CORBAInterface.CreditDeniedException value) {
_output.write_string(id());
_output.write_string(value.reason);
}
public static void insert(org.omg.CORBA.Any any, borland.reference.creditapproval.CORBAInterface.CreditDeniedException value) {