公告板
版本库
filestore
活动
搜索
登录
main
/
buwan-server
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
IP归属地查询接口集成
admin
2024-10-30
010ef2a907e66efd4702443c06cdd18f8a7ffa5b
[buwan-server.git]
/
src
/
main
/
java
/
com
/
yeshi
/
buwan
/
exception
/
PPTVException.java
1
2
3
4
5
6
7
8
9
10
11
12
package com.yeshi.buwan.exception;
public class PPTVException extends Exception {
private int code;
private String msg;
public PPTVException(int code, String msg) {
this.code = code;
this.msg = msg;
}
}