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 exceptions.py you have an entry in the domain map:
('Wand', 'There was a problem specific to the MagickWand API.', (), [370, 470, 770]),
This creates a "WandError" that overwrites the base class WandError. So this doesn't work:
import wand.exceptions try: raise wand.exceptions.CoderError except wand.exceptions.WandError: pass
The text was updated successfully, but these errors were encountered:
Base domain error types. Fix #292
5eb4840
Just got bit by this too and wasted some time trying to figure out why I couldn't catch an exception.
If the fix is in and we can get the memory fixed in #300, can we do a release?
Sorry, something went wrong.
b589ec8
No branches or pull requests
In exceptions.py you have an entry in the domain map:
This creates a "WandError" that overwrites the base class WandError. So this doesn't work:
The text was updated successfully, but these errors were encountered: