From 3a67f974263ca3ccb898ee491cde92d9e4cde571 Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Fri, 2 Oct 2015 13:03:38 +0200 Subject: [PATCH] Remove unsued story permission exception --- fimfarchive/exceptions.py | 6 ------ fimfarchive/fetchers.py | 3 --- 2 files changed, 9 deletions(-) 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()