URSMailerException.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:
Java编程
开发平台:
Java
- package day21ex.mailer;
- /**
- * This exception is thrown by the mailer component
- * when it failed while sending an email message.
- */
- public class URSMailerException extends Exception {
- /**
- * Default constructor. Takes no arguments
- */
- public URSMailerException() {}
- /**
- * Constructor
- * @param msg a string that explains the condition of the exception
- */
- public URSMailerException(String msg) {
- super(msg);
- }
- }