KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Reflective > OtherException


1 package org.omg.mof.Reflective;
2
3
4 /**
5 * org/omg/mof/Reflective/OtherException.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from Reflective.idl
8 * lundi 17 mars 2003 15 h 00 CET
9 */

10
11 public final class OtherException extends org.omg.CORBA.UserException JavaDoc
12 {
13   public org.omg.mof.Reflective.RefObject exception_designator = null;
14   public org.omg.CORBA.Any JavaDoc exception_values[] = null;
15
16   public OtherException ()
17   {
18     super(OtherExceptionHelper.id());
19   } // ctor
20

21   public OtherException (org.omg.mof.Reflective.RefObject _exception_designator, org.omg.CORBA.Any JavaDoc[] _exception_values)
22   {
23     super(OtherExceptionHelper.id());
24     exception_designator = _exception_designator;
25     exception_values = _exception_values;
26   } // ctor
27

28
29   public OtherException (String JavaDoc $reason, org.omg.mof.Reflective.RefObject _exception_designator, org.omg.CORBA.Any JavaDoc[] _exception_values)
30   {
31     super(OtherExceptionHelper.id() + " " + $reason);
32     exception_designator = _exception_designator;
33     exception_values = _exception_values;
34   } // ctor
35

36 } // class OtherException
37
Popular Tags