1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
package AnyEvent::XMPP::Error::IQ;
use strict;
no warnings;
use AnyEvent::XMPP::Error::Stanza;
our @ISA = qw/AnyEvent::XMPP::Error::Stanza/;
=head1 NAME
AnyEvent::XMPP::Error::IQ - IQ errors
Subclass of L<AnyEvent::XMPP::Error::Stanza>
=cut
sub init {
my ($self) = @_;
my $node = $self->xml_node;
unless (defined $node) {
$self->{error_cond} = 'client-timeout';
$self->{error_type} = 'cancel';
return;
}
$self->SUPER::init;
}
=head2 METHODS
=over 4
=item B<condition ()>
Same as L<AnyEvent::XMPP::Error::Stanza> except that
in case of a IQ timeout it returns:
'client-timeout'
=cut
sub string {
my ($self) = @_;
sprintf "iq error: %s/%s (type %s): %s",
$self->code || '',
$self->condition || '',
$self->type,
$self->text
}
=back
=cut
=head1 AUTHOR
Robin Redeker, C<< <elmex at ta-sa.org> >>, JID: C<< <elmex at jabber.org> >>
=head1 COPYRIGHT & LICENSE
Copyright 2007, 2008 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 AnyEvent::XMPP
|