Source code for progressive.exceptions

[docs]class ProgressiveException(Exception): """Base class for exceptions raised by ``progressive``"""
[docs]class ColorUnsupportedError(ProgressiveException): """Color is not supported by terminal"""
[docs]class WidthOverflowError(ProgressiveException): """Terminal is not wide enough for the bar attempting to be written"""
[docs]class LengthOverflowError(ProgressiveException): """Terminal is not long enough to display hierarchy"""