stable/freqtrade/exceptions.py

79 lines
2.0 KiB
Python
Raw Normal View History

class FreqtradeException(Exception):
2019-12-30 13:57:26 +00:00
"""
Freqtrade base exception. Handled at the outermost level.
All other exception types are subclasses of this exception type.
"""
class OperationalException(FreqtradeException):
"""
Requires manual intervention and will stop the bot.
Most of the time, this is caused by an invalid Configuration.
2019-12-30 13:57:26 +00:00
"""
class DependencyException(FreqtradeException):
2019-12-30 13:57:26 +00:00
"""
Indicates that an assumed dependency is not met.
This could happen when there is currently not enough money on the account.
2019-12-30 13:57:26 +00:00
"""
class PricingError(DependencyException):
2020-05-26 18:08:01 +00:00
"""
Subclass of DependencyException.
Indicates that the price could not be determined.
Implicitly a buy / sell operation.
"""
2020-08-12 12:25:50 +00:00
class ExchangeError(DependencyException):
"""
Error raised out of the exchange.
Has multiple Errors to determine the appropriate error.
"""
class InvalidOrderException(ExchangeError):
2019-12-30 13:57:26 +00:00
"""
This is returned when the order is not valid. Example:
If stoploss on exchange order is hit, then trying to cancel the order
should return this exception.
"""
2020-06-28 17:45:42 +00:00
class RetryableOrderError(InvalidOrderException):
"""
This is returned when the order is not found.
2021-06-25 13:45:49 +00:00
This Error will be repeated with increasing backoff (in line with DDosError).
2020-06-28 17:45:42 +00:00
"""
2020-08-14 07:56:48 +00:00
class InsufficientFundsError(InvalidOrderException):
"""
This error is used when there are not enough funds available on the exchange
to create an order.
"""
2020-06-28 14:01:40 +00:00
class TemporaryError(ExchangeError):
2019-12-30 13:57:26 +00:00
"""
Temporary network or exchange related error.
This could happen when an exchange is congested, unavailable, or the user
has networking problems. Usually resolves itself after a time.
"""
2020-06-28 09:17:06 +00:00
class DDosProtection(TemporaryError):
"""
Temporary error caused by DDOS protection.
Bot will wait for a second and then retry.
"""
class StrategyError(FreqtradeException):
"""
2021-06-25 13:45:49 +00:00
Errors with custom user-code detected.
Usually caused by errors in the strategy.
"""