class documentation

class AstroidBuildingError(AstroidError): (source)

Known subclasses: astroid.exceptions.AstroidImportError, astroid.exceptions.AstroidSyntaxError

View In Hierarchy

exception class when we are unable to build an astroid representation

Standard attributes:
modname: Name of the module that AST construction failed for. error: Exception raised during construction.
Method __init__ Undocumented

Inherited from AstroidError:

Method __str__ Undocumented
Instance Variable message Undocumented
def __init__(self, message='Failed to import module {modname}.', **kws): (source)