unauthorizedexception.java
来自「使用WebLogic Platform构建音乐站点」· Java 代码 · 共 21 行
JAVA
21 行
package music.shared;
/**
* if a user cannot pass the authorization, a UnauthorizedException
* will be thrown.
*/
public class UnauthorizedException extends Exception
{
public UnauthorizedException() {
super();
}
public UnauthorizedException(String msg) {
super(msg);
}
public UnauthorizedException(Throwable throwable) {
super(throwable);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?