Revision 0281b86d
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
SL/DB/Object/Hooks.pm | ||
---|---|---|
44 | 44 |
|
45 | 45 |
foreach my $sub (@{ ( $hooks{$when} || { })->{ ref($object) } || [ ] }) { |
46 | 46 |
my $result = ref($sub) eq 'CODE' ? $sub->($object, @args) : $object->call_sub($sub, @args); |
47 |
die SL::X::DBHookError->new(when => $when, |
|
48 |
hook => (ref($sub) eq 'CODE' ? '<anonymous sub>' : $sub), |
|
49 |
object => $object) |
|
47 |
die SL::X::DBHookError->new(when => $when, |
|
48 |
hook => (ref($sub) eq 'CODE' ? '<anonymous sub>' : $sub), |
|
49 |
object => $object, |
|
50 |
object_type => ref($object)) |
|
50 | 51 |
if !$result; |
51 | 52 |
} |
52 | 53 |
} |
Auch abrufbar als: Unified diff
DB-Object-Hooks: bei Exception in Hook auch Objekttyp in Exception-Text aufnehmen