import SfpowerscriptsError from './SfpowerscriptsError'; import { ReleaseResult } from '../impl/release/ReleaseImpl'; export default class ReleaseError extends SfpowerscriptsError { /** * Payload for the results of the release */ readonly data: ReleaseResult; /** * The underlying error that caused this error to be raised */ readonly cause: Error; constructor(message: string, data: ReleaseResult, cause?: Error); }