-
Notifications
You must be signed in to change notification settings - Fork 3
/
exceptiontest.php
64 lines (55 loc) · 1.11 KB
/
exceptiontest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
class Machine {
function doSomething(int $val) {
if($val < 0) {
throw new ZuKleinException();
}
elseif($val > 100) {
throw new ZuGrossException();
}
else {
echo 'Wird verarbeitet: '.$val;
}
}
}
class ZuKleinException extends Exception {
}
class ZuGrossException extends Exception {
}
class SpecialException extends Exception {
}
$machine = new Machine();
try {
$machine->doSomething(150);
}
catch(Exception $e) {
print_r($e);
}
function doSomethingElse(Machine $m, int $v) {
//try {
$m->doSomething($v);
//}
//catch(Exception $e) {
// echo $e->getMessage();
//}
echo "\nENDE METHODE";
}
try {
doSomethingElse($machine, -20);
}
catch(SpecialException $e) {
echo "\n".$e->getMessage().'SE';
}
catch(ZuKleinException $e) {
echo "\nDein Wert ist zu klein!";
}
catch(ZuGrossException $e) {
echo "\nDein Wert ist zu groß";
}
catch(Exception $e) { // Fängt alle Exceptions ein
echo "\n".$e->getMessage().'E';
}
finally {
echo "\nWird immer ausgeführt!";
}
echo "\nENDE";