create_subclass(class_name, description, parent_class_name)
Create a subclass that inherits all properties from the parent class.
Properties
| Name | Type | Description |
|---|---|---|
class_name | str | Name of the new subclass. |
description | str | Description for the subclass. |
parent_class_name | str | Name of the parent class to inherit from. |
Returns:
None
- Type
- None
Raises:
ClassNotFoundError- If the parent class does not exist.