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

10 lines
244 B
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
2015-08-03 07:29:41 +02:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel;
2016-08-18 18:04:48 +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
}