12 lines
285 B
Python
12 lines
285 B
Python
"""
|
|
Custom exceptions raised by Discussion API.
|
|
"""
|
|
|
|
|
|
class TeamDiscussionHiddenFromUserException(BaseException):
|
|
"""
|
|
This is the exception raised when a user is not
|
|
permitted to view the discussion thread
|
|
"""
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|