-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1928 from marcofognog/dev
Add more specific error thowring base on PR 1918
- Loading branch information
Showing
11 changed files
with
136 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,50 @@ | ||
class YFinanceException(Exception): | ||
pass | ||
class YFException(Exception): | ||
def __init__(self, description=""): | ||
super().__init__(description) | ||
|
||
|
||
class YFinanceDataException(YFinanceException): | ||
class YFDataException(YFException): | ||
pass | ||
|
||
|
||
class YFChartError(YFException): | ||
def __init__(self, ticker, description): | ||
self.ticker = ticker | ||
super().__init__(f"{self.ticker}: {description}") | ||
|
||
|
||
class YFNotImplementedError(NotImplementedError): | ||
def __init__(self, method_name): | ||
super().__init__(f"Have not implemented fetching '{method_name}' from Yahoo API") | ||
|
||
|
||
class YFTickerMissingError(YFException): | ||
def __init__(self, ticker, rationale): | ||
super().__init__(f"${ticker}: possibly delisted; {rationale}") | ||
self.rationale = rationale | ||
self.ticker = ticker | ||
|
||
|
||
class YFTzMissingError(YFTickerMissingError): | ||
def __init__(self, ticker): | ||
super().__init__(ticker, "No timezone found") | ||
|
||
|
||
class YFPricesMissingError(YFTickerMissingError): | ||
def __init__(self, ticker, debug_info): | ||
self.debug_info = debug_info | ||
super().__init__(ticker, f"No price data found {debug_info}") | ||
|
||
|
||
class YFEarningsDateMissing(YFTickerMissingError): | ||
# note that this does not get raised. Added in case of raising it in the future | ||
def __init__(self, ticker): | ||
super().__init__(ticker, "No earnings dates found") | ||
|
||
|
||
class YFInvalidPeriodError(YFException): | ||
def __init__(self, ticker, invalid_period, valid_ranges): | ||
self.ticker = ticker | ||
self.invalid_period = invalid_period | ||
self.valid_ranges = valid_ranges | ||
super().__init__(f"{self.ticker}: Period '{invalid_period}' is invalid, must be one of {valid_ranges}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.