Move exceptions to weboob.core.exceptions

This commit is contained in:
Florent 2014-10-02 11:04:14 +02:00
commit 9949bbf919
35 changed files with 34 additions and 34 deletions

View file

@ -18,7 +18,7 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from requests.exceptions import HTTPError
from weboob.tools.exceptions import BrowserHTTPError, BrowserHTTPNotFound
from weboob.core.exceptions import BrowserHTTPError, BrowserHTTPNotFound
class HTTPNotFound(HTTPError, BrowserHTTPNotFound):