1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/lib/Sync/ChannelException.php

10 lines
222 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
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
}