bugdown: Move BugdownRenderingException to exceptions.py.

This commit is contained in:
Shubham Dhama
2018-06-21 18:39:14 +05:30
committed by Tim Abbott
parent 89fefcd1a2
commit b9a8c4df8c
4 changed files with 8 additions and 7 deletions

View File

@@ -153,3 +153,6 @@ class StreamDoesNotExistError(JsonableError):
class RateLimited(PermissionDenied):
def __init__(self, msg: str="") -> None:
super().__init__(msg)
class BugdownRenderingException(Exception):
pass