This repository has no description
Something went wrong. Try again.
TypeScript
at main
1234567891011121314// SPDX-License-Identifier: AGPL-3.0-or-later
import {APIErrorCodes} from '@fluxer/constants/src/ApiErrorCodes';import {NotFoundError} from '@fluxer/errors/src/domains/core/NotFoundError';
export class AdminApiKeyNotFoundError extends NotFoundError { constructor(messageVariables?: Record<string, unknown>) { super({ code: APIErrorCodes.ADMIN_API_KEY_NOT_FOUND, messageVariables, }); }}