UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 515 B
import { WsclientError } from "./WsclientError"; export declare class ResultException extends Error { private wsclientError; private _errorCode; private _stackTraceMessage?; private _cause?; constructor(wsClientError: WsclientError, errorCode: number, errorMessage?: string, stackTraceMessage?: string, cause?: Error); getClientError(): WsclientError; getErrorCode(): number; getMessage(): string; getStackTraceMessage(): string | undefined; getCause(): Error | undefined; }