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

家庭/个人应用

开发平台:

Java

  1. package myException;
  2. /**
  3.  * If the num is an negative while it is supported to an positive,
  4.  * the NegativeException is thrown.
  5.  * 
  6.  * @version 1.0 09 March 2008
  7.  * @author LR-Zhi
  8.  */
  9. public class NegativeException extends Exception{
  10.     
  11.     private String msg;
  12.     
  13.     /**
  14.      * Costructor, initialize the attribute "msg" with s.
  15.      * 
  16.      * @param s Value to initialize "msg".
  17.      */
  18.     public NegativeException(String s){
  19.         msg = s;
  20.     }
  21.     
  22.     /**
  23.      * Override toString Method.
  24.      * 
  25.      * @return Formated error message output.
  26.      */
  27.     @Override
  28.     public String toString(){
  29.         return msg + " should be an Positive.";
  30.     }
  31. }