EVOLUTION-MANAGER
Edit File: exceptions.py
from __future__ import unicode_literals class PipelineException(Exception): pass class PackageNotFound(PipelineException): pass class CompilerError(PipelineException): pass class CompressorError(PipelineException): pass