UNPKG

admin-bro

Version:
30 lines (26 loc) 707 B
import * as CONSTANTS from '../../../constants' const buildUrl = (page: string): string => ( `${CONSTANTS.DOCS}/${page}` ) /** * Error which is thrown when user messed up something in the configuration * * @category Errors */ export class ConfigurationError extends Error { /** * @param {string} fnName name of the function, base on which error will * print on the output link to the method documentation. * @param {string} message */ constructor(message, fnName) { const msg = ` ${message} More information can be found at: ${buildUrl(fnName)} ` super(msg) this.message = msg this.name = 'ConfigurationError' } } export default ConfigurationError