mirror of
https://github.com/hi2shark/nazhua.git
synced 2026-01-16 01:00:43 +08:00
13 lines
162 B
JavaScript
13 lines
162 B
JavaScript
/**
|
|
* 自定义错误
|
|
*/
|
|
|
|
class CustomError extends Error {
|
|
constructor(msg, code) {
|
|
super(msg);
|
|
this.code = code;
|
|
}
|
|
}
|
|
|
|
export default CustomError;
|