9 lines
332 B
TypeScript
9 lines
332 B
TypeScript
|
|
import type { ClarizenErrorBody } from "./types.js";
|
||
|
|
export declare class ClarizenApiError extends Error {
|
||
|
|
readonly errorCode: string;
|
||
|
|
readonly referenceId?: string;
|
||
|
|
readonly status: number;
|
||
|
|
constructor(status: number, body: ClarizenErrorBody);
|
||
|
|
isSessionTimeout(): boolean;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=errors.d.ts.map
|