APIErrorsPlatformError

PlatformError

Raised when platform services reject a score, save, or session operation.

Signature

PlatformError

Raised when platform services reject a score, save, or session operation.

Signature

class PlatformError(ConjureError)

Parameters

NameTypeDefaultDescription

Returns

Exception class

Example

from conjure import *

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

See also

  • ConjureError
  • NotInitializedError
  • DrawingError

Return to the errors overview or continue with the quickstart.