UNPKG

picanhajs

Version:

A tasty website static generator

12 lines (10 loc) 282 B
'use strict'; class ParameterNotFound extends Error { constructor() { super(arguments); this.name = 'ParameterNotFound'; this.message = 'Parameter(s) were expected. None got.'; this.stack = (new Error()).stack; } } module.exports.ParameterNotFound = ParameterNotFound;