📄 ursmailerexception.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);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -