File size: 380 Bytes
be59fdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
class ClickException(Exception):
"""
Base exception for the ClickReaction package.he
"""
pass
class NoProductError(ClickException):
"""
Error raised if a reaction does not give any product.
"""
pass
class AmbiguousProductError(ClickException):
"""
Gets raised if a reaction leads unexpectedly to one or more products.
"""
pass
|