001    package org.omg.PortableInterceptor;
002    
003    /**
004     * Generated from IDL exception "ForwardRequest".
005     *
006     * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007     * @version generated at Sep 22, 2012 10:58:00 AM
008     */
009    
010    public final class ForwardRequest
011            extends org.omg.CORBA.UserException
012    {
013            public ForwardRequest()
014            {
015                    super(org.omg.PortableInterceptor.ForwardRequestHelper.id());
016            }
017    
018            public org.omg.CORBA.Object forward;
019            public ForwardRequest(java.lang.String _reason,org.omg.CORBA.Object forward)
020            {
021                    super(org.omg.PortableInterceptor.ForwardRequestHelper.id()+ " " + _reason);
022                    this.forward = forward;
023            }
024            public ForwardRequest(org.omg.CORBA.Object forward)
025            {
026                    super(org.omg.PortableInterceptor.ForwardRequestHelper.id());
027                    this.forward = forward;
028            }
029    }