UNPKG

@arpinum/ddd

Version:
13 lines (8 loc) 212 B
'use strict'; const CustomError = require('./customError'); class TechnicalError extends CustomError { constructor(message) { super(message || 'Technical error'); } } module.exports = TechnicalError;