source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/packages/dal/pydal/exceptions.py

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 347 bytes
Line 
1# -*- coding: utf-8 -*-
2
3
4class NotFoundException(Exception):
5    pass
6
7
8class NotAuthorizedException(Exception):
9    pass
10
11
12class NotOnNOSQLError(NotImplementedError):
13    def __init__(self, message=None):
14        if message is None:
15            message = "Not Supported on NoSQL databases"
16        super(NotOnNOSQLError, self).__init__(message)
Note: See TracBrowser for help on using the repository browser.