| POEx-WorkerPool documentation | Contained in the POEx-WorkerPool distribution. |
POEx::WorkerPool::Error::JobError - An error class indicating something failed with the job
version 1.102740
This exception is thrown when there is an irrecoverable error with a job
is: ro, isa: DoesJob
This contains the job that errored
is:ro, isa: JobStatus
This contains the useful information captured from the try block around the job during execution of the previous step
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::JobError; BEGIN { $POEx::WorkerPool::Error::JobError::VERSION = '1.102740'; } #ABSTRACT: An error class indicating something failed with the job use MooseX::Declare; class POEx::WorkerPool::Error::JobError extends POEx::WorkerPool::Error { use POEx::WorkerPool::Types(':all'); has job => ( is => 'ro', isa => DoesJob, required => 1 ); has job_status => ( is => 'ro', isa => JobStatus, required => 1 ); } 1;
__END__