@cashfarm/plow
Version:
Library for validating input data and parameters
16 lines • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Base class for domain exceptions
*
* No utility here, except that you can differentiate this exceptions
* from unexpected errors by using instanceof operator.
*
* @export
* @class DomainException
* @extends {Error}
*/
class DomainException extends Error {
}
exports.DomainException = DomainException;
//# sourceMappingURL=domainException.js.map