/usr/lib/python3/dist-packages/mkdocs/exceptions.py is in mkdocs 0.16.3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from __future__ import unicode_literals
from click import ClickException
class MkDocsException(ClickException):
"""Base exceptions for all MkDocs Exceptions"""
class ConfigurationError(MkDocsException):
"""Error in configuration"""
class MarkdownNotFound(MkDocsException):
"""A linked local Markdown file isn't found in the table of contents."""
|