Common error codes shared across all sandbox provider implementations.
These represent the core error conditions that any sandbox provider may encounter. Provider-specific error codes should extend this type with additional codes.
SandboxErrorCode: "NOT_INITIALIZED" | "ALREADY_INITIALIZED" | "COMMAND_TIMEOUT" | "COMMAND_FAILED" | "FILE_OPERATION_FAILED"// Provider-specific error code type extending the common codes:
type MySandboxErrorCode = SandboxErrorCode | "CUSTOM_ERROR";