| POEx-WorkerPool documentation | Contained in the POEx-WorkerPool distribution. |
POEx::WorkerPool::Error - Error class for WorkerPool using Throwable
version 1.102740
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
A human readable error message
Nicholas R. Perez <nperez@cpan.org>
This software is copyright (c) 2010 by Infinity Interactive.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 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__