1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6namespace App\Exceptions;
7
8/**
9 * Exception thrown on user-supplied input that fails to clear automated moderation checks.
10 * It is generally fine to not provide any user-facing message to indicate that this is the case.
11 */
12class ContentModerationException extends InvariantException
13{
14}