![]() |
Belle II Software light-2509-fornax
|


Public Member Functions | |
| __init__ (self, members, list_constructors, obj_name) | |
Public Attributes | |
| str | message = "No corresponding constructor found. Looking for signature: \n" |
| Member contatining the final message of the exception. | |
| members = members | |
| Dictionary. | |
| list_constructors = list_constructors | |
| List of constructors. | |
| name = obj_name | |
| Name of the class. | |
Class that throws an exception when a specific constructor is not found. The error message will contain the signature of the wanted constructor, as well as the signature of the available constructors.
Definition at line 126 of file _constwrapper.py.
| __init__ | ( | self, | |
| members, | |||
| list_constructors, | |||
| obj_name ) |
Parameters:
-----------
members: dictionary
Contains the name of the parameters of the wanted constructor and their types
list_constructors: list of dictionaries
Contains all the available constructors, with the names of their parameters
and their types
obj_name: string
Name of the class of which the constructor is wanted
Definition at line 132 of file _constwrapper.py.
| list_constructors = list_constructors |
List of constructors.
Definition at line 151 of file _constwrapper.py.
| members = members |
Dictionary.
Definition at line 149 of file _constwrapper.py.
| message = "No corresponding constructor found. Looking for signature: \n" |
Member contatining the final message of the exception.
Definition at line 147 of file _constwrapper.py.
| name = obj_name |
Name of the class.
Definition at line 153 of file _constwrapper.py.