@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) • 424 B
TypeScript
import SfpError from './SfpError';
import { ReleaseResult } from '../impl/release/ReleaseImpl';
export default class ReleaseError extends SfpError {
/**
* 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);
}