UNPKG

@erikmuir/lambda-authorizer

Version:

AWS API Gateway Custom Lambda Authorizer for NodeJS

9 lines (7 loc) 218 B
const BaseException = require('./BaseException'); module.exports = class TokenValidationException extends BaseException { constructor(message) { super(message); this.name = 'TokenValidationException'; } }