=head1 NAME RDF::Trine::Parser::Error - Error classes for RDF::Trine::Parser. =head1 VERSION This document describes RDF::Trine::Parser::Error version 0.111 =head1 SYNOPSIS use RDF::Trine::Parser::Error qw(:try); =head1 DESCRIPTION RDF::Trine::Parser::Error provides an class hierarchy of errors that other RDF::Trine::Parser classes may throw using the L API. See L for more information. =head1 REQUIRES L =cut package RDF::Trine::Parser::Error; use strict; use warnings; no warnings 'redefine'; use Carp qw(carp croak confess); use base qw(Error); ###################################################################### our ($VERSION); BEGIN { $VERSION = '0.111'; } ###################################################################### package RDF::Trine::Parser::Error::ValueError; use base qw(RDF::Trine::Parser::Error); 1; __END__ =head1 AUTHOR Gregory Todd Williams C<< >> =head1 COPYRIGHT Copyright (c) 2006-2009 Gregory Todd Williams. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut