@cto.ai/ops
Version:
💻 CTO.ai - The CLI built for Teams 🚀
20 lines (19 loc) • 519 B
JavaScript
;
/**
* @author: Prachi Singh (prachi@hackcapital.com)
* @date: Monday, 6th May 2019 1:37:34 pm
* @lastModifiedBy: Prachi Singh (prachi@hackcapital.com)
* @lastModifiedTime: Monday, 6th May 2019 2:06:20 pm
*
* DESCRIPTION: Error Source constants
*
* @copyright (c) 2019 Hack Capital
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.errorSource = void 0;
const EXPECTED = 'EXPECTED';
const UNEXPECTED = 'UNEXPECTED';
exports.errorSource = {
EXPECTED,
UNEXPECTED,
};