@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
8 lines (7 loc) • 433 B
TypeScript
import { ResultException } from "./ResultException";
import { WsclientError } from "./WsclientError";
export declare class ServerResultException extends ResultException {
constructor(wsClientError: WsclientError, errorMessage?: string, errorCode?: number, stackTrace?: string);
static createWebserviceException(errorMessage?: string, errorCode?: number, stackTrace?: string): ServerResultException;
toString(): string;
}