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

Source Code for Module tlib.base.ExceptionHelper

1 -class FileNotExistError(Exception):
2 """ File does not exist """
3 - def __init__(self, *args, **kwargs): # real signature unknown
4 pass
5 6 @staticmethod # known case of __new__
7 - def __new__(cls, *more): # real signature unknown; restored from __doc__
8 """ T.__new__(cls, ...) -> a new object with type cls, a subtype of T """ 9 pass 10
11 -class BadFormatError(Exception):
12 """ file contains bad format other than expected """
13 - def __init__(self, *args, **kwargs): # real signature unknown
14 pass
15 16 @staticmethod # known case of __new__
17 - def __new__(cls, *more): # real signature unknown; restored from __doc__
18 """ T.__new__(cls, ...) -> a new object with type cls, a subtype of T """ 19 pass 20