| AnyEvent-XMPP documentation | Contained in the AnyEvent-XMPP distribution. |
AnyEvent::XMPP::Error::Presence - Presence errors
Subclass of AnyEvent::XMPP::Error::Stanza
Robin Redeker, <elmex at ta-sa.org>, JID: <elmex at jabber.org>
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.
| AnyEvent-XMPP documentation | Contained in the AnyEvent-XMPP distribution. |
package AnyEvent::XMPP::Error::Presence; use AnyEvent::XMPP::Error::Stanza; use strict; our @ISA = qw/AnyEvent::XMPP::Error::Stanza/;
sub string { my ($self) = @_; sprintf "presence error: %s/%s (type %s): %s", $self->code || '', $self->condition || '', $self->type, $self->text }
1; # End of AnyEvent::XMPP