/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

  1. package javax.megaco;
  2. /**
  3. * This Exception is thrown when an attempt is made to set an invalid parameter
  4. * in an object
  5. *
  6. * @deprecated - THis is wrong practice. It should be indicated by runtime
  7. * exception
  8. */
  9. public class MethodInvocationException extends MegacoException {
  10. public MethodInvocationException() {
  11. super();
  12. // TODO Auto-generated constructor stub
  13. }
  14. public MethodInvocationException(String msg) {
  15. super(msg);
  16. // TODO Auto-generated constructor stub
  17. }
  18. }