UNPKG

@adobe/pdfservices-node-sdk

Version:

The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.

15 lines (14 loc) 358 B
/** * SDKError is typically thrown for client-side or network errors. * * @see {@link ServiceApiError} * @see {@link ServiceUsageError} */ export declare class SDKError extends Error { /** * Constructs a `SDKError` with the specified detail message. * * @param message error message detail */ constructor(message: string); }