1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
parallel/lib/WorkerException.php
2016-12-29 19:16:04 -06:00

14 lines
302 B
PHP

<?php
namespace Amp\Parallel;
class WorkerException extends \Exception {
/**
* @param string $message
* @param \Throwable|null $previous
*/
public function __construct(string $message, \Throwable $previous = null) {
parent::__construct($message, 0, $previous);
}
}