POEx::WorkerPool::Error - Error class for WorkerPool using Throwable


POEx-WorkerPool documentation Contained in the POEx-WorkerPool distribution.

Index


Code Index:

NAME

Top

POEx::WorkerPool::Error - Error class for WorkerPool using Throwable

VERSION

Top

version 1.102740

DESCRIPTION

Top

This is mostly a base class for other exeptions within POEx::WorkerPool.

Please see any of the following for more information:

    POEx::WorkerPool::Error::EnqueueError
    POEx::WorkerPool::Error::JobError
    POEx::WorkerPool::Error::NoAvailableWorkers
    POEx::WorkerPool::Error::StartError

PUBLIC_ATTRIBUTES

Top

message is: ro, isa: Str, required: 1

A human readable error message

AUTHOR

Top

Nicholas R. Perez <nperez@cpan.org>

COPYRIGHT AND LICENSE

Top


POEx-WorkerPool documentation Contained in the POEx-WorkerPool distribution.

package POEx::WorkerPool::Error;
BEGIN {
  $POEx::WorkerPool::Error::VERSION = '1.102740';
}

use MooseX::Declare;

#ABSTRACT: Error class for WorkerPool using Throwable

class POEx::WorkerPool::Error with Throwable {
    use MooseX::Types::Moose(':all');


    has message => ( is => 'ro', isa => Str, required => 1);
}

1;




__END__