POE::Component::Server::Bayeux::Message::Invalid - invalid message


POE-Component-Server-Bayeux documentation Contained in the POE-Component-Server-Bayeux distribution.

Index


Code Index:

NAME

Top

POE::Component::Server::Bayeux::Message::Invalid - invalid message

DESCRIPTION

Top

Subclasses POE::Component::Server::Bayeux::Message. Just an error, really.

COPYRIGHT

Top

AUTHOR

Top

Eric Waters <ewaters@uarc.com>


POE-Component-Server-Bayeux documentation Contained in the POE-Component-Server-Bayeux distribution.
package POE::Component::Server::Bayeux::Message::Invalid;

use strict;
use warnings;
use base qw(POE::Component::Server::Bayeux::Message);

sub is_error {
    return "Invalid message";
}

1;