Source code for polywrap_wasm.errors
"""This module contains the error classes used by polywrap-wasm package."""
from polywrap_core import WrapError
[docs]class WasmExportNotFoundError(WasmError):
"""Raises when an export isn't found in the wasm module."""
__all__ = [
"WasmError",
"WasmExportNotFoundError",
"WasmMemoryError",
]