?? serviceexception.java
字號(hào):
package com.javachap.service.impl;
public class ServiceException extends RuntimeException {
private static final long serialVersionUID = 2301643675735660187L;
public ServiceException() {
}
public ServiceException(String arg0) {
super(arg0);
}
public ServiceException(Throwable arg0) {
super(arg0);
}
public ServiceException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -