Cleanups, permissions separation into explicit module, absolute import update

This commit is contained in:
Roberto Rosario
2012-01-02 03:48:26 -04:00
parent 2781a211ec
commit 34311fb17e
107 changed files with 693 additions and 468 deletions

View File

@@ -1,29 +1,29 @@
class ConvertError(Exception):
"""
'''
Base exception for all coverter app exceptions
"""
'''
pass
class UnknownFileFormat(ConvertError):
"""
'''
Raised when the converter backend can't understand a file
"""
'''
pass
class IdentifyError(ConvertError):
"""
'''
Raised by the graphcismagick and imagemagics identify program
"""
'''
pass
class UnkownConvertError(ConvertError):
"""
'''
Raised when an error is found but there is no disernible way to
identify the kind of error
"""
'''
pass