Skip to content

Commit

Permalink
Start work on server re-write
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed May 16, 2015
1 parent f6f74b9 commit d503568
Show file tree
Hide file tree
Showing 3 changed files with 841 additions and 0 deletions.
Empty file added src/calibre/srv/__init__.py
Empty file.
16 changes: 16 additions & 0 deletions src/calibre/srv/errors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import (unicode_literals, division, absolute_import,
print_function)

__license__ = 'GPL v3'
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'


class NonHTTPConnRequest(Exception):

def __init__(self, data=None):
Exception.__init__(self, '')
self.data = data


Loading

0 comments on commit d503568

Please sign in to comment.