1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Let's have the new exceptions subclass basic exception types

This commit is contained in:
Kevin McCarthy
2013-12-19 19:34:06 -10:00
parent 41f5fce895
commit d4494bae50
4 changed files with 14 additions and 9 deletions

View File

@@ -13,10 +13,7 @@ from .patch import install, reset
from .persist import load_cassette, save_cassette
from .serializers import yamlserializer
from .matchers import requests_match, url, method
class UnhandledHTTPRequestError(Exception):
pass
from .errors import UnhandledHTTPRequestError
class Cassette(ContextDecorator):