@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
17 lines (16 loc) • 493 B
JavaScript
;
/**
* @author WMXPY
* @namespace Error
* @description Property Error
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.PropertyError = void 0;
const imbricate_error_1 = require("../imbricate-error");
class PropertyError extends imbricate_error_1.ImbricateError {
constructor(message, type, reason) {
super(message, type, reason);
Object.setPrototypeOf(this, PropertyError.prototype);
}
}
exports.PropertyError = PropertyError;