Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
18 lines
325 B
Python
18 lines
325 B
Python
"""
|
|
Exceptions related to EdxNotes.
|
|
"""
|
|
|
|
|
|
class EdxNotesParseError(Exception):
|
|
"""
|
|
An exception that is raised whenever we have issues with data parsing.
|
|
"""
|
|
pass
|
|
|
|
|
|
class EdxNotesServiceUnavailable(Exception):
|
|
"""
|
|
An exception that is raised whenever EdxNotes service is unavailable.
|
|
"""
|
|
pass
|