add BrowserToBeContinued exception and handle it

This commit is contained in:
Baptiste Delpey 2015-03-06 17:23:32 +01:00 committed by Romain Bignon
commit 3a05b29bc3
2 changed files with 14 additions and 1 deletions

View file

@ -17,6 +17,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from weboob.tools.value import Value
class BrowserIncorrectPassword(Exception):
pass
@ -38,6 +39,13 @@ class BrowserUnavailable(Exception):
pass
class BrowserToBeContinued(BrowserUnavailable):
def __init__(self, *args):
self.fields = []
for arg in args:
self.fields.append(Value(label=arg))
class BrowserHTTPNotFound(BrowserUnavailable):
pass