deleteexception.java

来自「java写的blog」· Java 代码 · 共 25 行

JAVA
25
字号
/*
 * Created on 2004-9-29
 * Author: Xuefeng, Copyright (C) 2004, Xuefeng.
 */
package org.crystalblog.exception;

/**
 * TODO Description here...
 * 
 * @author Xuefeng
 */
public class DeleteException extends RuntimeException {

    public DeleteException() {}

    public DeleteException(String msg) {
        super(msg);
    }

    public DeleteException(Throwable throwable) {
        super(throwable);
    }

}

⌨️ 快捷键说明

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