Repository URL to install this package:
|
Version:
1.6.14 ▾
|
django-pipeline
/
exceptions.py
|
|---|
from __future__ import unicode_literals
class PipelineException(Exception):
pass
class PackageNotFound(PipelineException):
pass
class CompilerError(PipelineException):
def __init__(self, msg, command=None, error_output=None):
super(CompilerError, self).__init__(msg)
self.command = command
self.error_output = error_output.strip()
class CompressorError(PipelineException):
pass