@devexpress/utils
Version:
DevExpress utils
16 lines (15 loc) • 513 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Errors = void 0;
var Errors = (function () {
function Errors() {
}
Errors.internalExceptionTemplate = function (str) {
return Errors.InternalException + " " + str;
};
Errors.NotImplemented = 'The method is not implemented.';
Errors.InternalException = 'Internal exception.';
Errors.ValueCannotBeNull = 'Value cannot be null.';
return Errors;
}());
exports.Errors = Errors;
;