mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-22 12:27:13 +08:00
11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
class APIError extends Error {
|
|
constructor(message, code = null, data = null) {
|
|
super(message);
|
|
|
|
this.name = 'APIError';
|
|
this.code = code;
|
|
this.data = data;
|
|
}
|
|
}
|
|
|
|
export default APIError;
|