[errors] Validate arguments to get_dataframe

This commit is contained in:
Cameron Yick
2019-04-29 23:17:02 -04:00
parent e39b97585b
commit 5b6e6ce202
2 changed files with 29 additions and 20 deletions

15
tiingo/exceptions.py Normal file
View File

@@ -0,0 +1,15 @@
# Exception Clasess
class InstallPandasException(Exception):
pass
class APIColumnNameError(Exception):
pass
class InvalidFrequencyError(Exception):
pass
class MissingRequiredArgumentError(Exception):
pass