mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-04-06 06:48:32 +07:00
18 lines
343 B
Python
18 lines
343 B
Python
from click import ClickException
|
|
|
|
|
|
class MkDocsException(ClickException):
|
|
"""Base exceptions for all MkDocs Exceptions"""
|
|
|
|
|
|
class ConfigurationError(MkDocsException):
|
|
"""Error in configuration"""
|
|
|
|
|
|
class BuildError(MkDocsException):
|
|
"""Error during the build process"""
|
|
|
|
|
|
class PluginError(BuildError):
|
|
"""Error in a plugin"""
|