APIErrorsDrawingError

DrawingError

Raised for drawing-related runtime failures.

Signature

DrawingError

Raised for drawing-related runtime failures.

Signature

class DrawingError(ConjureError)

Parameters

NameTypeDefaultDescription

Returns

Exception class

Example

from conjure import *

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

See also

  • ConjureError
  • NotInitializedError
  • AssetNotFoundError

Return to the errors overview or continue with the quickstart.