Remove unsued story permission exception

This commit is contained in:
Joakim Soderlund 2015-10-02 13:03:38 +02:00
parent 22a23862b4
commit 3a67f97426
2 changed files with 0 additions and 9 deletions

View file

@ -34,12 +34,6 @@ class InvalidStoryError(FimfarchiveError):
""" """
class StoryPermissionError(FimfarchiveError):
"""
Story is password protected.
"""
class StorySourceError(FimfarchiveError): class StorySourceError(FimfarchiveError):
""" """
Story source is unusable. Story source is unusable.

View file

@ -62,7 +62,6 @@ class Fetcher:
Raises: Raises:
InvalidStoryError: If a valid story is not found. InvalidStoryError: If a valid story is not found.
StoryPermissionError: If access to the story is denied.
StorySourceError: If source does not return any data. StorySourceError: If source does not return any data.
""" """
raise NotImplementedError() raise NotImplementedError()
@ -79,7 +78,6 @@ class Fetcher:
Raises: Raises:
InvalidStoryError: If a valid story is not found. InvalidStoryError: If a valid story is not found.
StoryPermissionError: If access to the story is denied.
StorySourceError: If source does not return any data. StorySourceError: If source does not return any data.
""" """
raise NotImplementedError() raise NotImplementedError()
@ -96,7 +94,6 @@ class Fetcher:
Raises: Raises:
InvalidStoryError: If a valid story is not found. InvalidStoryError: If a valid story is not found.
StoryPermissionError: If access to the story is denied.
StorySourceError: If source does not return any data. StorySourceError: If source does not return any data.
""" """
raise NotImplementedError() raise NotImplementedError()