1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 05:51:14 +01:00
parallel/lib/ChannelException.php

10 lines
219 B
PHP
Raw Normal View History

2015-08-03 00:29:41 -05:00
<?php
2016-08-18 11:04:48 -05:00
namespace Amp\Concurrent;
class ChannelException extends \Exception {
public function __construct(string $message, \Throwable $previous = null) {
2015-12-05 00:54:15 -06:00
parent::__construct($message, 0, $previous);
}
2015-08-03 00:29:41 -05:00
}