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 - def __init__(self, *args, **kwargs): # real signature unknown
7 pass
8 9 @staticmethod # known case of __new__
10 - def __new__(cls, *more): # real signature unknown; restored from __doc__
11 """ T.__new__(cls, ...) -> a new object with type cls, a subtype of T """ 12 pass 13
14 -class BadFormatError(TLibException):
15 """ file contains bad format other than expected """
16 - def __init__(self, *args, **kwargs): # real signature unknown
17 pass
18 19 @staticmethod # known case of __new__
20 - def __new__(cls, *more): # real signature unknown; restored from __doc__
21 """ T.__new__(cls, ...) -> a new object with type cls, a subtype of T """ 22 pass 23