Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
11
Task/Exceptions/PL-I/exceptions.pli
Normal file
11
Task/Exceptions/PL-I/exceptions.pli
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/* Define a new exception, called "my_condition". */
|
||||
on condition (my_condition) snap begin;
|
||||
put skip list ('My condition raised.');
|
||||
end;
|
||||
|
||||
/* Raise that exception */
|
||||
signal condition (my_condition);
|
||||
|
||||
/* Raising that exception causes the message "My condition raised" */
|
||||
/* to be printed, and execution then resumes at the statement */
|
||||
/* following the SIGNAL statement. */
|
||||
Loading…
Add table
Add a link
Reference in a new issue