APIErrorsSaveDataError

SaveDataError

Raised when save data cannot be persisted or loaded.

Signature

SaveDataError

Raised when save data cannot be persisted or loaded.

Signature

class SaveDataError(ConjureError)

Parameters

NameTypeDefaultDescription

Returns

Exception class

Example

from conjure import *

try:
    draw_circle(180, 320, 32, RED)
except SaveDataError:
    print("runtime setup needed")

See also

  • ConjureError
  • NotInitializedError
  • DrawingError

Return to the errors overview or continue with the quickstart.