LookoutforVision / Client / exceptions / ConflictException

ConflictException#

class LookoutforVision.Client.exceptions.ConflictException#

The update or deletion of a resource caused an inconsistent state.

Example

try:
  ...
except client.exceptions.ConflictException as e:
  print(e.response)
response#

The parsed error response. All exceptions have a top level Error key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.

Syntax

{
    'Message': 'string',
    'ResourceId': 'string',
    'ResourceType': 'PROJECT'|'DATASET'|'MODEL'|'TRIAL'|'MODEL_PACKAGE_JOB',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The update or deletion of a resource caused an inconsistent state.

    • Message (string) –

    • ResourceId (string) –

      The ID of the resource.

    • ResourceType (string) –

      The type of the resource.

    • Error (dict) – Normalized access to common exception attributes.

      • Code (string) – An identifier specifying the exception type.

      • Message (string) – A descriptive message explaining why the exception occured.