APIErrorsConjureError

ConjureError

Base class for Conjure runtime errors.

Signature

ConjureError

Base class for Conjure runtime errors.

Signature

class ConjureError(Exception)

Parameters

NameTypeDefaultDescription

Returns

Exception class

Example

from conjure import *

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

See also

  • NotInitializedError
  • DrawingError
  • AssetNotFoundError

Return to the errors overview or continue with the quickstart.