01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/BadAttributeValueException.java .
05: * Generated by the IDL-to-Java compiler (portable), version "3.2"
06: * from qrs.idl
07: * Tuesday, August 7, 2007 11:57:30 AM EDT
08: */
09:
10: public final class BadAttributeValueException extends
11: org.omg.CORBA.UserException {
12: public String attribute_name = null;
13:
14: public BadAttributeValueException() {
15: super (BadAttributeValueExceptionHelper.id());
16: } // ctor
17:
18: public BadAttributeValueException(String _attribute_name) {
19: super (BadAttributeValueExceptionHelper.id());
20: attribute_name = _attribute_name;
21: } // ctor
22:
23: public BadAttributeValueException(String $reason,
24: String _attribute_name) {
25: super (BadAttributeValueExceptionHelper.id() + " " + $reason);
26: attribute_name = _attribute_name;
27: } // ctor
28:
29: } // class BadAttributeValueException
|