class documentation

class InstanceNotExistError(CustomException): (source)

View In Hierarchy

This is thrown when trying to access the attribute of a non instance variable. e.g. x = 1 y = x.y # ----> thrown x.z = 1 # ----> thrown in renaming

Method __init__ Undocumented
Instance Variable msg Undocumented
def __init__(self, instance): (source)