TableIllegalException.java
上传用户:yinzh02
上传日期:2021-05-28
资源大小:63k
文件大小:0k
源码类别:

家庭/个人应用

开发平台:

Java

  1. package myException;
  2. /**
  3.  * If the Tax Rate Table is illegal, the TableIllegalException is thrown.
  4.  * 
  5.  * @version 1.0 09 March 2008
  6.  * @author LR-Zhi
  7.  */
  8. public class TableIllegalException extends Exception {
  9.   
  10.     /**
  11.      * Override toString Method.
  12.      * 
  13.      * @return Formated error message output.
  14.      */
  15.     @Override
  16.     public String toString(){
  17.         return "The Tax Rate Table which you want to make is illegal.";
  18.     }
  19. }