projects/angular-client-sdk/src/lib/interfaces/error.interface.ts
Properties |
code |
code:
|
Type : PaperSDKErrorCode
|
An enum representing the error encountered. The value is a human-readable, English message describing the error. |
error |
error:
|
Type : Error
|
import { PaperSDKErrorCode } from '../enums/error-code.enum';
export interface PaperSDKError {
/**
* An enum representing the error encountered.
* The value is a human-readable, English message describing the error.
*/
code: PaperSDKErrorCode;
error: Error;
}