diff -r 84b65fb9e780 -r d133c7edd88a Toolbox/SingleApplication.py --- a/Toolbox/SingleApplication.py Sun Sep 29 15:54:10 2013 +0200 +++ b/Toolbox/SingleApplication.py Sun Sep 29 18:22:08 2013 +0200 @@ -93,6 +93,8 @@ @param cmd commandstring (string) @param params parameterstring (string) + @exception RuntimeError raised to indicate that this method must be + implemented by a subclass """ raise RuntimeError("'handleCommand' must be overridden") @@ -146,6 +148,8 @@ <b>Note</b>: This method must be overridden by subclasses. @param args command line args (list of strings) + @exception RuntimeError raised to indicate that this method must be + implemented by a subclass """ raise RuntimeError("'processArgs' must be overridden")