mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-09-06 07:51:56 +08:00
更改项目模块名称,整合b站爬虫
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package org.example.exception;
|
||||
|
||||
/**
|
||||
* @author Genius
|
||||
* @date 2023/07/29 14:59
|
||||
**/
|
||||
|
||||
/**
|
||||
* 初始化报错
|
||||
*/
|
||||
public class InitException extends RuntimeException{
|
||||
|
||||
private String message;
|
||||
|
||||
public InitException(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user