01: package org.mockejb;
02:
03: /**
04: * Indicates that the method defined by one of the standard interfaces is
05: * not implemented by the framework.
06: * MockEJB currently does not implement a number of
07: * <code>Context</code> and <code>EJBObject</code> methods.
08: */
09: public class MethodNotImplementedException extends RuntimeException {
10:
11: public MethodNotImplementedException(String methodName,
12: String className) {
13: super ("Method " + methodName + " not implemented by the class "
14: + className);
15: }
16:
17: }
|