delta-db/beautify-proj

View on GitHub
scripts/ugly-error.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

var UglyError = function (message) {
  this.name = 'UglyError';
  this.message = message;
};

UglyError.prototype = Object.create(Error.prototype);
UglyError.prototype.constructor = UglyError;

module.exports = UglyError;