/protocols/jain-megaco/megaco-api/src/main/java/javax/megaco/MethodInvocationException.java
http://mobicents.googlecode.com/ · Java · 22 lines · 9 code · 4 blank · 9 comment · 0 complexity · 24b8043b47c57362c536a4954e281a38 MD5 · raw file
- package javax.megaco;
-
- /**
- * This Exception is thrown when an attempt is made to set an invalid parameter
- * in an object
- *
- * @deprecated - THis is wrong practice. It should be indicated by runtime
- * exception
- */
- public class MethodInvocationException extends MegacoException {
-
- public MethodInvocationException() {
- super();
- // TODO Auto-generated constructor stub
- }
-
- public MethodInvocationException(String msg) {
- super(msg);
- // TODO Auto-generated constructor stub
- }
-
- }