InvalidPackageError
Raised when an invalid system package is detected during image build.
Attributes
| Attribute | Type | Description |
|---|---|---|
| package_name | str | The name of the invalid system package that was detected. |
| original_error | str | The original error message that led to the detection of the invalid package. |
Constructor
Signature
def InvalidPackageError(
package_name: str,
original_error: str
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| package_name | str | The name of the invalid package. |
| original_error | str | The original error message. |
Signature
def InvalidPackageError(
package_name: str,
original_error: str
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| package_name | str | The name of the system package that was detected as invalid. This name is included in the error message to identify the problematic package. |
| original_error | str | The original error message or exception string that led to the detection of the invalid package. This provides additional context for debugging the issue. |