1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-23 06:21:12 +01:00
parallel/lib/Exception/WorkerException.php
2016-07-20 09:23:50 -05:00

15 lines
341 B
PHP

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