UNPKG

@salesforce/source-tracking

Version:

API for tracking local and remote Salesforce metadata changes

20 lines 683 B
"use strict"; /* * Copyright (c) 2020, salesforce.com, inc. * All rights reserved. * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SourceConflictError = void 0; const sfError_1 = require("@salesforce/core/sfError"); class SourceConflictError extends sfError_1.SfError { name; constructor(message, data) { super(message); this.name = 'SourceConflictError'; this.data = data; } } exports.SourceConflictError = SourceConflictError; //# sourceMappingURL=types.js.map