1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
2 duplicate and use this code are hereby granted provided that this
3 copyright notice is included.
4 *****/
5
6 package org.omg.CORBA;
7
8 public final class Bounds extends org.omg.CORBA.UserException {
9
10 public Bounds() {
11 super(BoundsHelper.id());
12 }
13
14 public Bounds(String reason_str) { // full constructor
15 super(BoundsHelper.id()+" "+reason_str);
16 }
17 }