📄 createexception.java
字号:
/*
* Created on 2004-9-29
* Author: Xuefeng, Copyright (C) 2004, Xuefeng.
*/
package org.crystalblog.exception;
/**
* CreateException is thrown when an error occur during create
* a new account, article, image, etc.
*
* @author Xuefeng
*/
public class CreateException extends RuntimeException {
public CreateException() {}
public CreateException(String msg) {
super(msg);
}
public CreateException(Throwable throwable) {
super(throwable);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -