parallel/lib/ChannelException.php
2016-12-29 19:16:04 -06:00

10 lines
217 B
PHP

<?php
namespace Amp\Parallel;
class ChannelException extends \Exception {
public function __construct(string $message, \Throwable $previous = null) {
parent::__construct($message, 0, $previous);
}
}