This repository has no description
Something went wrong. Try again.
TypeScript
at main
12345678910111213// SPDX-License-Identifier: AGPL-3.0-or-later
import {APIErrorCodes} from '@fluxer/constants/src/ApiErrorCodes';import {BadRequestError} from '@fluxer/errors/src/domains/core/BadRequestError';
export class CannotTransferOwnershipToBotError extends BadRequestError { constructor() { super({ code: APIErrorCodes.CANNOT_TRANSFER_OWNERSHIP_TO_BOT, }); }}