公告板
版本库
filestore
活动
搜索
登录
main
/
buwan-server
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
聚合视频资源包调整,接入韩迷
admin
2021-08-27
8fee151ffae0c3818694b7318583814bf92663e2
[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;
}
}