baml.panics.Cancelled

A cancellation was requested.

Reference version

Signature

class baml.panics.Cancelled

A cancellation was requested.

Examples

let fut = spawn {
    baml.sys.sleep(baml.time.Duration.from_seconds(5)); // panics
};
fut.cancel();
await fut; // panics (propagated)

Source:<builtin>/baml/ns_panics/panics.bamlbytes 20282068

Fields

message

string

Implementations

baml.Concrete for T

Source:<builtin>/baml/core.bamlbytes 747779