UNPKG

@flxbl-io/sfp

Version:

sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model

14 lines (13 loc) 369 B
export default abstract class SfpError extends Error { readonly message: string; readonly code: string; /** * The underlying error that caused this error to be raised */ readonly cause: Error; /** * Additional payload for the error */ abstract data: unknown; constructor(message: string, code?: string, cause?: Error); }