@@ -, +, @@ --- Koha/Biblio/Metadata.pm | 2 +- Koha/Exceptions/Metadata.pm | 6 +++--- t/Koha/Exceptions.t | 6 ++++-- 3 files changed, 8 insertions(+), 6 deletions(-) --- a/Koha/Biblio/Metadata.pm +++ a/Koha/Biblio/Metadata.pm @@ -75,7 +75,7 @@ sub record { id => $self->id, format => $self->format, schema => $self->schema, - marcxml_error => $marcxml_error, + decoding_error => $marcxml_error, ); } } --- a/Koha/Exceptions/Metadata.pm +++ a/Koha/Exceptions/Metadata.pm @@ -25,7 +25,7 @@ use Exception::Class ( 'Koha::Exceptions::Metadata::Invalid' => { isa => 'Koha::Exceptions::Metadata', description => 'Invalid data', - fields => ['id','format','schema', 'marcxml_error'] + fields => ['id','format','schema', 'decoding_error'] } ); @@ -36,8 +36,8 @@ sub full_message { unless ($msg) { if ( $self->isa('Koha::Exceptions::Metadata::Invalid') ) { - $msg = sprintf( "Invalid data, cannot decode object (id=%s, format=%s, schema=%s, MARCXML error='%s')", - $self->id, $self->format, $self->schema, $self->marcxml_error ); + $msg = sprintf( "Invalid data, cannot decode object (id=%s, format=%s, schema=%s, decoding_error='%s')", + $self->id, $self->format, $self->schema, $self->decoding_error ); } } --- a/t/Koha/Exceptions.t +++ a/t/Koha/Exceptions.t @@ -115,12 +115,14 @@ subtest 'Koha::Exceptions::Metadata tests' => sub { $object->mock( 'schema', 'a_schema' ); throws_ok - { Koha::Exceptions::Metadata::Invalid->throw( id => 'an_id', format => 'a_format', schema => 'a_schema' ); } + { Koha::Exceptions::Metadata::Invalid->throw( + id => 'an_id', format => 'a_format', + schema => 'a_schema', decoding_error => 'a_nasty_error' ); } 'Koha::Exceptions::Metadata::Invalid', 'Exception is thrown :-D'; # stringify the exception - is( "$@", 'Invalid data, cannot decode object (id=an_id, format=a_format, schema=a_schema)', 'Exception stringified correctly' ); + is( "$@", 'Invalid data, cannot decode object (id=an_id, format=a_format, schema=a_schema, decoding_error=\'a_nasty_error\')', 'Exception stringified correctly' ); throws_ok { Koha::Exceptions::Metadata::Invalid->throw( "Manual message exception" ) } --