01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA.portable;
05:
06: public class ApplicationException extends Exception {
07:
08: private String _id;
09: private org.omg.CORBA.portable.InputStream _is;
10:
11: public ApplicationException(String id,
12: org.omg.CORBA.portable.InputStream is) {
13: _id = id;
14: _is = is;
15: }
16:
17: public String getId() {
18: return _id;
19: }
20:
21: public InputStream getInputStream() {
22: return _is;
23: }
24:
25: }
|