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):
"""
Story source is unusable.

View file

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