Click / data /ClickReaction /Exceptions.py
introvoyz041's picture
Migrated from GitHub
be59fdd verified
raw
history blame contribute delete
380 Bytes
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