mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
Add configuration error to Exception hierarchy
This commit is contained in:
parent
85c150b68e
commit
ca94bbe994
|
@ -129,6 +129,8 @@ Below is an outline of exception inheritance hierarchy:
|
||||||
+ FreqtradeException
|
+ FreqtradeException
|
||||||
|
|
|
|
||||||
+---+ OperationalException
|
+---+ OperationalException
|
||||||
|
| |
|
||||||
|
| +---+ ConfigurationError
|
||||||
|
|
|
|
||||||
+---+ DependencyException
|
+---+ DependencyException
|
||||||
| |
|
| |
|
||||||
|
|
|
@ -12,6 +12,12 @@ class OperationalException(FreqtradeException):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class ConfigurationError(OperationalException):
|
||||||
|
"""
|
||||||
|
Configuration error. Usually caused by invalid configuration.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
class DependencyException(FreqtradeException):
|
class DependencyException(FreqtradeException):
|
||||||
"""
|
"""
|
||||||
Indicates that an assumed dependency is not met.
|
Indicates that an assumed dependency is not met.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user