KiBot/kiplot/error.py

16 lines
160 B
Python

"""
KiPlot errors
"""
class KiPlotError(Exception):
pass
class PlotError(KiPlotError):
pass
class KiPlotConfigurationError(KiPlotError):
pass