Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions examples/document.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>
Header
</h1>
<p>
Contents
</p>
<h1>Header</h1>
<p>Contents</p>
</body>
</html>
</html>
1 change: 1 addition & 0 deletions hug/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def __init__(self, message, reasons=None):

class StoreKeyNotFound(Exception):
"""Should be raised when a store key has not been found inside a store"""
pass


class SessionNotFound(StoreKeyNotFound):
Expand Down