aboutsummaryrefslogtreecommitdiffstats
path: root/bot/utils/exceptions.py
blob: dc62debe2c10f2b7d15fede3bdf82dc119dd7b3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class BrandingError(Exception):
    """Exception raised by the BrandingManager cog."""

    pass


class UserNotPlayingError(Exception):
    """Will raised when user try to use game commands when not playing."""

    pass