Content deleted Content added
Line 25:
'''begin'''
Do_Something_Interesting;
'''when''' Constraint_Error =>
''... -- Handle constraint error''
'''when''' Storage_Error =>
''-- Propagate
'''raise''' Some_Error '''with''' "Out of memory";
'''when''' Error : '''others''' =>
Line 36 ⟶ 35:
Put ("Exception: ");
Put_Line (Exception_Name (Error));
'''end''' Foo;
|