all files / kayn/dist/lib/Errors/ ParameterError.js

61.9% Statements 13/21
24% Branches 6/25
40% Functions 2/5
81.82% Lines 9/11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25                               
"use strict";
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
 
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
 
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
 
function _inherits(subClass, superClass) { if (Itypeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); Eif (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
 
var ParameterError = function (_Error) {
  _inherits(ParameterError, _Error);
 
  function ParameterError(message) {
    _classCallCheck(this, ParameterError);
 
    return _possibleConstructorReturn(this, (ParameterError.__proto__ || Object.getPrototypeOf(ParameterError)).call(this, message));
  }
 
  return ParameterError;
}(Error);
 
exports.default = ParameterError;