IdlException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.excepiiop.interfaces; /** * org/jboss/test/excepiiop/interfaces/IdlException.java . * Generated by the IDL-to-Java compiler (portable), version "3.1" * from IdlException.idl * Thursday, July 17, 2003 6:39:23 PM BRT */ public final class IdlException extends org.omg.CORBA.UserException { public int i = (int)0; public String s = null; public IdlException () { super(IdlExceptionHelper.id()); } // ctor public IdlException (int _i, String _s) { super(IdlExceptionHelper.id()); i = _i; s = _s; } // ctor public IdlException (String $reason, int _i, String _s) { super(IdlExceptionHelper.id() + " " + $reason); i = _i; s = _s; } // ctor } // class IdlException
IdlException.java |