01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/NoSuchAttributeException.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 NoSuchAttributeException extends
11: org.omg.CORBA.UserException {
12: public String attribute_name = null;
13:
14: public NoSuchAttributeException() {
15: super (NoSuchAttributeExceptionHelper.id());
16: } // ctor
17:
18: public NoSuchAttributeException(String _attribute_name) {
19: super (NoSuchAttributeExceptionHelper.id());
20: attribute_name = _attribute_name;
21: } // ctor
22:
23: public NoSuchAttributeException(String $reason,
24: String _attribute_name) {
25: super (NoSuchAttributeExceptionHelper.id() + " " + $reason);
26: attribute_name = _attribute_name;
27: } // ctor
28:
29: } // class NoSuchAttributeException
|