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

家庭/个人应用

开发平台:

Java

  1. package myException;
  2. /**
  3.  * If the index is out of existing rank's rang,
  4.  * the OutOfRangException is thrown.
  5.  * 
  6.  * @version 1.0 09 March 2008
  7.  * @author LR-Zhi
  8.  */
  9. public class OutOfRangException extends Exception {
  10.     
  11.     private int nRank;
  12.     
  13.     /**
  14.      * Costructor, initialize the attribute "nRank" with n.
  15.      * 
  16.      * @param s Value to initialize "nRank".
  17.      */
  18.     public OutOfRangException(int n){
  19.         nRank = n;
  20.     }
  21.     
  22.     /**
  23.      * Override toString Method.
  24.      * 
  25.      * @return Formated error message output.
  26.      */
  27.     @Override
  28.      public String toString(){
  29.         return "The rank should between 0 and " + nRank + ".";
  30.     }
  31. }