1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-06 04:38:21 +01:00
parallel/lib/WorkerException.php
Aaron Piotrowski da84a772cf Port to Amp
2016-08-18 11:04:48 -05:00

14 lines
304 B
PHP

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