jimeng-free-api-all/src/lib/exceptions/APIException.ts

14 lines
299 B
TypeScript
Raw Normal View History

import Exception from './Exception.js';
export default class APIException extends Exception {
/**
*
*
* @param {[number, string]} exception
*/
constructor(exception: (string | number)[], errmsg?: string) {
super(exception, errmsg);
}
}