Exception handling syntax: Difference between revisions

Content deleted Content added
Line 13:
==== Raising exceptions ====
 
'''raise''' Some_Error[ '''with''' "Out of memory" ];
'''raise''' Some_Error '''with''' "Out of memory"; -- specific diagnostic message
 
==== Exception handling and propagation ====