Source code for artifacts.errors

# -*- coding: utf-8 -*-
"""The error objects."""


[docs] class Error(Exception): """The error interface."""
[docs] class CodeStyleError(Error): """Error that is raised when code formatting fails style checks."""
[docs] class FormatError(Error): """Error that is raised when the format is incorrect."""
[docs] class MissingDependencyError(Error): """Artifact references artifact that is undefined."""