⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ursmailerexception.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);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -