@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 737 B
TypeScript
import { Parameter } from "./index";
export interface WebserviceExceptionInterface {
errorCode: number;
errorMessage: string;
stackTrace?: string;
}
export declare class WebserviceException implements WebserviceExceptionInterface, Parameter {
errorCode: number;
errorMessage: string;
stackTrace?: string;
constructor(data: any);
static getErrorCodeDefault(): number;
static getErrorCodeDescription(): string;
static getErrorMessageDefault(): string;
static getErrorMessageDescription(): string;
static getStackTraceDefault(): string;
static getStackTraceDescription(): string;
static fromJson(data: any): WebserviceException;
toJson(): any;
clone(): WebserviceException;
}