UNPKG

@erikmuir/lambda-authorizer

Version:

AWS API Gateway Custom Lambda Authorizer for NodeJS

9 lines (7 loc) 190 B
module.exports = class BaseException extends Error { constructor(message) { super(message); this.name = 'BaseException'; } toString = () => `${this.name}: ${this.message}`; }