@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) • 428 B
TypeScript
import SfpError from './SfpError';
import ValidateResult from '../impl/validate/ValidateResult';
export default class ValidateError extends SfpError {
/**
* Payload for the results of the release
*/
readonly data: ValidateResult;
/**
* The underlying error that caused this error to be raised
*/
readonly cause: Error;
constructor(message: string, data: ValidateResult, cause?: Error);
}