Error Handling
Error Handling
try:
comparison = analyzer.compare_pretensions(configurations, targets)
except FileNotFoundError as e:
print(f"Results file not found: {e}")
print("Check configuration paths")
except KeyError as e:
print(f"Variable not found: {e}")
print("Check object and variable names match simulations")