Download | Plain Text | No Line Numbers


  1. /**
  2.  * Exceptionklasse. Eine InvalidParameterException wird geworfen, falls
  3.  * Zusicherungen für Anzahl oder Wert der Operanden am Stack verletzt
  4.  * werden (zu wenig Operanden am Stack, Division durch 0, etc.)
  5.  */
  6.  
  7. public class InvalidParameterException extends Exception
  8. {
  9. public InvalidParameterException()
  10. {
  11. super();
  12. }
  13.  
  14. public InvalidParameterException(String msg)
  15. {
  16. super(msg);
  17. }
  18. }
  19.