@marxlnfcs/wildduck-api
Version:
Provides a client to interact with the wildduck api
11 lines (10 loc) • 358 B
TypeScript
import { IWildduckHttpError } from "../interfaces/http.interface";
export declare class WildduckException extends Error {
url: string | null;
status: number;
statusMessage: string;
error: string;
code: string;
details: any;
constructor(url: string, status: number, statusMessage: string, error: IWildduckHttpError, stack: any);
}