Mercurial > kraina_muminkow
diff frontend/mfrontend/exceptions.py @ 6:27d63cac76ac
Konta użytkowników muszą być aktywowane + ładniejsze wyświetlanie błędów przy logowaniu
author | Michał Rudowicz <michal.rudowicz@fl9.eu> |
---|---|
date | Mon, 28 Feb 2011 11:14:35 +0100 |
parents | |
children | d86794939fe4 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frontend/mfrontend/exceptions.py Mon Feb 28 11:14:35 2011 +0100 @@ -0,0 +1,14 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +class UserNotActivated(Exception): + def __init__(self): + pass + def __str__(self): + return u"Konto nie zostało uaktywnione." + +class BadPasswordOrUsername(Exception): + def __init__(self): + pass + def __str__(self): + return u"Błędna nazwa użytkownika lub hasło."