UNPKG

n8n

Version:

n8n Workflow Automation Tool

14 lines (13 loc) 537 B
import { ServerError } from '@modelcontextprotocol/sdk/server/auth/errors.js'; import { AuthError } from '../../errors/response-errors/auth.error'; export declare const buildOAuthClientLimitReachedMessage: (limit: number) => string; export declare class OAuthClientLimitReachedError extends ServerError { readonly limit: number; constructor(limit: number); } export declare class JWTVerificationError extends AuthError { constructor(); } export declare class AccessTokenNotFoundError extends AuthError { constructor(); }