- package myException;
- /**
- * If the Tax Rate Table is illegal, the TableIllegalException is thrown.
- *
- * @version 1.0 09 March 2008
- * @author LR-Zhi
- */
- public class TableIllegalException extends Exception {
- /**
- * Override toString Method.
- *
- * @return Formated error message output.
- */
- @Override
- public String toString(){
- return "The Tax Rate Table which you want to make is illegal.";
- }
- }