2017-11-18 07:52:28 +00:00
|
|
|
""" FreqTrade bot """
|
2018-01-20 18:05:57 +00:00
|
|
|
__version__ = '0.16.0'
|
2017-09-28 21:47:51 +00:00
|
|
|
|
2017-11-20 21:15:19 +00:00
|
|
|
|
|
|
|
class DependencyException(BaseException):
|
|
|
|
"""
|
|
|
|
Indicates that a assumed dependency is not met.
|
|
|
|
This could happen when there is currently not enough money on the account.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
class OperationalException(BaseException):
|
|
|
|
"""
|
|
|
|
Requires manual intervention.
|
|
|
|
This happens when an exchange returns an unexpected error during runtime.
|
|
|
|
"""
|
2018-03-24 18:51:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NetworkException(BaseException):
|
|
|
|
"""
|
|
|
|
Network related error.
|
|
|
|
This could happen when an exchange is congested, unavailable, or the user
|
|
|
|
has networking problems. Usually resolves itself after a time.
|
|
|
|
"""
|