X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FX.pm;h=e1707cd0e3bfef0ff5b4137f892246e2a71e3047;hb=5474d397bbc42ffaea0b51ebb4bb9a4c7afaa881;hp=c3533e2efb7fe72ba24788517660e701175e402c;hpb=6ceacc682f9c760e654f5aacde9b8480760d8b36;p=kivitendo-erp.git diff --git a/SL/X.pm b/SL/X.pm index c3533e2ef..e1707cd0e 100644 --- a/SL/X.pm +++ b/SL/X.pm @@ -5,6 +5,11 @@ use warnings; use SL::X::Base; + +# note! the default fields "message", "error" and "show_trace" are created by +# Exception::Class if message or error are given, they are used for +# stringification, so don't use them in error_templates +# use Exception::Class ( 'SL::X::FormError' => { isa => 'SL::X::Base', @@ -32,13 +37,11 @@ use Exception::Class ( }, 'SL::X::Inventory' => { isa => 'SL::X::Base', - fields => [ qw(msg error) ], - defaults => { error_template => [ '%s: %s', qw(msg) ] }, + fields => [ qw(code) ], }, 'SL::X::Inventory::Allocation' => { isa => 'SL::X::Base', - fields => [ qw(msg error) ], - defaults => { error_template => [ '%s: %s', qw(msg) ] }, + fields => [ qw(code) ], }, );