mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 05:17:59 +01:00
Remove unsued story permission exception
This commit is contained in:
parent
22a23862b4
commit
3a67f97426
2 changed files with 0 additions and 9 deletions
|
@ -34,12 +34,6 @@ class InvalidStoryError(FimfarchiveError):
|
|||
"""
|
||||
|
||||
|
||||
class StoryPermissionError(FimfarchiveError):
|
||||
"""
|
||||
Story is password protected.
|
||||
"""
|
||||
|
||||
|
||||
class StorySourceError(FimfarchiveError):
|
||||
"""
|
||||
Story source is unusable.
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue