Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Exceptions/HolyC/exceptions-1.holyc
Normal file
8
Task/Exceptions/HolyC/exceptions-1.holyc
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
try {
|
||||
U8 *err = 'Error';
|
||||
throw(err); // throw exception
|
||||
} catch {
|
||||
if (err == 'Error')
|
||||
Print("Raised 'Error'");
|
||||
PutExcept; // print the exception and stack trace
|
||||
}
|
||||
17
Task/Exceptions/HolyC/exceptions-2.holyc
Normal file
17
Task/Exceptions/HolyC/exceptions-2.holyc
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import Exceptions
|
||||
|
||||
procedure main(A)
|
||||
every i := !A do {
|
||||
case Try().call{ write(g(i)) } of {
|
||||
Try().catch(): {
|
||||
x := Try().getException()
|
||||
write(x.getMessage(), ":\n", x.getLocation())
|
||||
}
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
procedure g(i)
|
||||
if numeric(i) = 3 then Exception().throw("bad value of "||i)
|
||||
return i
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue