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