package Net::XMPP2::Error::Parser; use Net::XMPP2::Error; our @ISA = qw/Net::XMPP2::Error/; =head1 NAME Net::XMPP2::Error::Parser - XML parse errors Subclass of L =cut sub init { my ($self) = @_; } =head2 METHODS =over 4 =item B Returns the XML parser exception. =cut sub exception { return $_[0]->{exception} } =item B Returns the errornous data. =cut sub data { $_[0]->{data} } sub string { my ($self) = @_; sprintf ("xml parse error: exception: %s, data: [%s]", $self->exception, $self->data) } =back =cut =head1 AUTHOR Robin Redeker, C<< >>, JID: C<< >> =head1 COPYRIGHT & LICENSE Copyright 2007 Robin Redeker, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of Net::XMPP2