AssetNotFoundError
Raised when an asset filename cannot be resolved.
Signature
AssetNotFoundError
Raised when an asset filename cannot be resolved.Signature
class AssetNotFoundError(ConjureError)Parameters
| Name | Type | Default | Description |
|---|
Returns
Exception classExample
from conjure import *
try:
draw_circle(180, 320, 32, RED)
except AssetNotFoundError:
print("runtime setup needed")See also
ConjureErrorNotInitializedErrorDrawingError
Return to the errors overview or continue with the quickstart.