APIErrorsAssetNotFoundError

AssetNotFoundError

Raised when an asset filename cannot be resolved.

Signature

AssetNotFoundError

Raised when an asset filename cannot be resolved.

Signature

class AssetNotFoundError(ConjureError)

Parameters

NameTypeDefaultDescription

Returns

Exception class

Example

from conjure import *

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

See also

  • ConjureError
  • NotInitializedError
  • DrawingError

Return to the errors overview or continue with the quickstart.