You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
432 B

# encoding: utf-8
"""
Exceptions specific the the image sub-package
"""
class InvalidImageStreamError(Exception):
"""
The recognized image stream appears to be corrupted
"""
class UnexpectedEndOfFileError(Exception):
"""
EOF was unexpectedly encountered while reading an image stream.
"""
class UnrecognizedImageError(Exception):
"""
The provided image stream could not be recognized.
"""