UNPKG

zaccl

Version:

The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.

28 lines (27 loc) 716 B
/** * Custom ZACCL error class * @author Gabe Abrams */ declare class ZACCLError extends Error { message: string; name: string; code: string; stack: string; isZACCLError: boolean; /** * Create a new ZACCLError * @author Gabe Abrams * @param opts object containing all arguments * @param [opts.message=An unknown error occurred.] error message * @param [opts.name=ZACCLError] name of the error * @param [opts.code=NOCODE1] custom error code * @param [opts.stack=current stack] error stack */ constructor(opts?: { message?: string; name?: string; code?: string; stack?: string; }); } export default ZACCLError;