Bemrosetta Error Handling

Sub-skill of bemrosetta: Error Handling.

vamseeachanta b8a1513 479 B Updated

File contents

Error Handling

Error Handling

from digitalmodel.bemrosetta import (
    BEMRosettaError,
    ParserError,
    ConverterError,
    MeshError,
)

try:
    results = parser.parse("analysis.LIS")
except ParserError as e:
    print(f"Parse error: {e}")
    print(f"File: {e.context.get('file_path')}")
except BEMRosettaError as e:
    print(f"BEMRosetta error: {e}")

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/engineering/marine-offshore/bemrosetta/error-handling commit b8a15134aa

Frequently asked questions

npx skillmds@latest add vamseeachanta/bemrosetta-error-handling