Source code for prompy.errors

[docs]class PromiseError(Exception): """Base promise error"""
[docs]class UnhandledPromiseError(PromiseError): """Unhandled promise rejection error"""
[docs]class PromiseRejectionError(PromiseError): """Raised when a promise is called with raise_again option"""
[docs]class UrlCallError(PromiseError): """Web call error"""