UNPKG

@erikmuir/lambda-authorizer

Version:

AWS API Gateway Custom Lambda Authorizer for NodeJS

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