项目文件夹

文件
wehub-resource-sync 2c632336aa
CI / Viewer CI (push) Successful in 13m37s
CI / Core CI (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:32:38 +08:00

775 B

Errors

All public errors in the SDK derive from sdk.SDKError.

SDKError

from sdk import SDKError

Base exception for the articulated object SDK.

ValidationError

from sdk import ValidationError

Raised when an articulated object definition or a QC check is invalid, inconsistent, or cannot be evaluated.

Import Errors

If you hit ModuleNotFoundError for something like sdk.placement, sdk.testing, or sdk.core_types, the usual cause is treating a docs topic name as a Python submodule.

Import public authoring helpers from top-level sdk instead.

# Correct
from sdk import TestContext, ValidationError, place_on_face

# Wrong
from sdk.testing import TestContext
from sdk.placement import place_on_face