abstract public class CreditApprovalExceptionHelper {
private static org.omg.CORBA.ORB _orb() {
return org.omg.CORBA.ORB.init();
}
public static borland.reference.creditapproval.CORBAInterface.CreditApprovalException 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.CreditApprovalException result = new borland.reference.creditapproval.CORBAInterface.CreditApprovalException();
result.reason = _input.read_string();
return result;
}
public static void write(org.omg.CORBA.portable.OutputStream _output, borland.reference.creditapproval.CORBAInterface.CreditApprovalException value) {
_output.write_string(id());
_output.write_string(value.reason);
}
public static void insert(org.omg.CORBA.Any any, borland.reference.creditapproval.CORBAInterface.CreditApprovalException value) {