You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # -*- coding: utf-8 -*-
-
- """
- EarwigBot's Wiki Toolset: Exceptions
-
- This module contains all exceptions used by the wiki.tools package.
- """
-
- class WikiToolsetError(Exception):
- """Base exception class for errors in the Wiki Toolset."""
-
- class SiteNotFoundError(WikiToolsetError):
- """A site matching the args given to get_site() could not be found in the
- config file."""
-
- class NamespaceNotFoundError(WikiToolsetError):
- """A requested namespace name or namespace ID does not exist."""
-
- class UserNotFoundError(WikiToolsetError):
- """Attempting to get information about a user that does not exist."""
|