Content deleted Content added
m →Raising exceptions: optional |
m →[[Ada (programming language)|Ada]]: add declaration in example, removed epilogue as this is handled by the template |
||
Line 5:
=== [[Ada (programming language)|Ada]] ===
{{
==== Exception declarations ====
Some_Error
==== Raising exceptions ====
Line 17:
==== Exception handling and propagation ====
'''with''' Ada.Exceptions; '''use''' Ada.Exceptions;
Some_Error : '''exception''';
'''procedure''' Foo '''is'''
Line 35 ⟶ 36:
Put (Exception_Message (Error));
'''end''' Foo;
=== [[BASIC]] ===
|