URSMailerException.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

  1. package day21ex.mailer;
  2. /**
  3.  * This exception is thrown by the mailer component
  4.  * when it failed while sending an email message.
  5.  */
  6. public class URSMailerException extends Exception {
  7.     /**
  8.      * Default constructor. Takes no arguments
  9.      */
  10.     public URSMailerException() {}
  11.     /**
  12.      * Constructor
  13.      * @param msg    a string that explains the condition of the exception
  14.      */
  15.     public URSMailerException(String msg) {
  16.         super(msg);
  17.     }
  18. }