Device Related Messages
Error codes related to device operations, including device lookup, registration conflicts, and device availability.
Overview
| Code | Message | Description |
|---|---|---|
DVC001 | デバイス {0} は不明です。 | No device was found with the provided ID or identifier. |
DVC002 | デバイス {0} はすでに存在しています。 | A device with the provided identifier already exists, violating the unique constraint. |
DVC003 | デバイスIDはnullを許容していません。 | The device ID is required but was not provided. |
DVC004 | デバイス '{0}' はオンラインではありません。 | The specified device is currently offline and cannot be used for invocations. |
Error Code Details
DVC001
Message
デバイス {0} は不明です。
Description
No device was found with the provided ID or identifier.
Root Cause
- The device ID
{0}does not match any registered device.
Resolution
- Verify the device ID and ensure the device is registered in the system.
DVC002
Message
デバイス {0} はすでに存在しています。
Description
A device with the provided identifier already exists, violating the unique constraint.
Root Cause
- A device with the identifier
{0}was previously registered.
Resolution
- Use a different device identifier.
- Check existing devices before registering a new one.
DVC003
Message
デバイスIDはnullを許容していません。
Description
The device ID is required but was not provided.
Root Cause
- The
deviceIdfield was not included in the request.
Resolution
- Provide a valid device ID in the request.
DVC004
Message
デバイス '{0}' はオンラインではありません。
Description
The specified device is currently offline and cannot be used for invocations.
Root Cause
- The device
{0}is not connected or is in an offline state.
Resolution
- Wait for the device to come online and retry.
- Select a different device that is currently online.