1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/lib/Sync/ChannelException.php

12 lines
226 B
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-08-03 07:29:41 +02:00
namespace Amp\Parallel\Sync;
2016-08-18 18:04:48 +02:00
2018-10-07 16:50:45 +02:00
class ChannelException extends \Exception
{
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
}