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 IndirectionException extends org.omg.CORBA.SystemException {
07:
08: public int offset;
09:
10: public IndirectionException(int offset) {
11: super ("", 0, org.omg.CORBA.CompletionStatus.COMPLETED_NO);
12: this.offset = offset;
13: }
14:
15: }
|