Package tlib :: Package base :: Module ExceptionHelper
[hide private]
[frames] | no frames]

Source Code for Module tlib.base.ExceptionHelper

1 -class TLibException(Exception):
2 pass
3
4 -class FileNotExistError(TLibException):
5 """ File does not exist """ 6 pass
7
8 -class BadFormatError(TLibException):
9 """ file contains bad format other than expected """ 10 pass
11
12 -class RestServiceError(TLibException):
13 """ REST service returned an unexpected or error response """ 14 pass
15
16 -class BadJsonFormatError(TLibException):
17 """ file contains bad formatted or invalid JSON """ 18 pass
19