1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 18:17:52 +01:00
parallel/lib/Exception/ChannelException.php

11 lines
256 B
PHP
Raw Normal View History

2015-08-03 07:29:41 +02:00
<?php
namespace Icicle\Concurrent\Exception;
2015-12-06 07:40:48 +01:00
class ChannelException extends \Exception implements Exception
2015-08-03 07:29:41 +02:00
{
2016-01-23 07:00:56 +01:00
public function __construct(string $message, \Throwable $previous = null)
2015-12-05 07:54:15 +01:00
{
parent::__construct($message, 0, $previous);
}
2015-08-03 07:29:41 +02:00
}