// 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 SingleCommunityCannotCreateGuildsError extends BadRequestError { constructor() { super({code: APIErrorCodes.SINGLE_COMMUNITY_CANNOT_CREATE_GUILDS}); } }