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

11 lines
256 B
PHP

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