trap
This section is a work in progress.
Examples:
from kybra import ic, query
# traps with a message, stopping execution and discarding all state within the call
@query
def trap(message: str) -> bool:
    ic.trap(message)
    return True
This section is a work in progress.
Examples:
from kybra import ic, query
# traps with a message, stopping execution and discarding all state within the call
@query
def trap(message: str) -> bool:
    ic.trap(message)
    return True