diff --git a/fimfarchive/exceptions.py b/fimfarchive/exceptions.py index 97258c9..cd728a0 100644 --- a/fimfarchive/exceptions.py +++ b/fimfarchive/exceptions.py @@ -34,12 +34,6 @@ class InvalidStoryError(FimfarchiveError): """ -class StoryPermissionError(FimfarchiveError): - """ - Story is password protected. - """ - - class StorySourceError(FimfarchiveError): """ Story source is unusable. diff --git a/fimfarchive/fetchers.py b/fimfarchive/fetchers.py index b54c228..1b0a745 100644 --- a/fimfarchive/fetchers.py +++ b/fimfarchive/fetchers.py @@ -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()