thedroth-rocks/hitherdither/exceptions.py
2023-07-10 10:50:23 +03:00

22 lines
356 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
exceptions
-----------
:copyright: 2017-05-10 by hbldh <henrik.blidh@nedomkull.com>
"""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
class HitherDitherError(Exception):
pass
class PaletteCouldNotBeCreatedError(Exception):
pass