UNPKG

serverless-global-authorizer

Version:

Serverless framework plugin which allows to configure API Gateway authorizer globally and applies it for all http/httpApi lambda function events

8 lines (7 loc) 248 B
export class ServerlessGlobalAuthorizerError extends Error { constructor(message: string) { super(`[serverless-global-authorizer] ${message}`); this.name = this.constructor.name; Error.captureStackTrace(this, this.constructor); } }