mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-27 02:37:36 +08:00
9 lines
131 B
JavaScript
9 lines
131 B
JavaScript
class APIError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
|
|
this.name = 'APIError';
|
|
}
|
|
}
|
|
|
|
export default APIError;
|