We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case of broken .record file there is an attempt of creating RecordException object:
cyber_record/cyber_record/reader.py
Line 268 in 83656db
but it has overrided init function without accepting additional arguments:
cyber_record/cyber_record/record_exception.py
Line 19 in 83656db
I suggest, that RecordException class should be left empty:
class RecordException(Exception): pass
The text was updated successfully, but these errors were encountered:
@IvDmNe Yes, you are right, I want to create a custom exception to prompt the error message. You can submit a PR to fix it!
Here is an article explain well about python exception! https://realpython.com/python-raise-exception/
Sorry, something went wrong.
No branches or pull requests
In case of broken .record file there is an attempt of creating RecordException object:
cyber_record/cyber_record/reader.py
Line 268 in 83656db
but it has overrided init function without accepting additional arguments:
cyber_record/cyber_record/record_exception.py
Line 19 in 83656db
I suggest, that RecordException class should be left empty:
The text was updated successfully, but these errors were encountered: