KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > GIOP > SystemExceptionReplyBody


1 package gcc.org.omg.GIOP;
2
3
4 /**
5 * gcc/org/omg/GIOP/SystemExceptionReplyBody.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from ../idl/GIOP.idl
8 * Wednesday, December 8, 2004 11:54:40 AM EST
9 */

10
11
12 // Same Header contents for 1.0 and 1.1
13
public final class SystemExceptionReplyBody implements org.omg.CORBA.portable.IDLEntity JavaDoc
14 {
15   public String JavaDoc exception_id = null;
16   public int minor_code_value = (int)0;
17   public int completion_status = (int)0;
18
19   public SystemExceptionReplyBody ()
20   {
21   } // ctor
22

23   public SystemExceptionReplyBody (String JavaDoc _exception_id, int _minor_code_value, int _completion_status)
24   {
25     exception_id = _exception_id;
26     minor_code_value = _minor_code_value;
27     completion_status = _completion_status;
28   } // ctor
29

30 } // class SystemExceptionReplyBody
31
Popular Tags