mirror of
https://github.com/danog/parallel.git
synced 2025-01-23 06:21:12 +01:00
11 lines
256 B
PHP
11 lines
256 B
PHP
<?php
|
|
namespace Icicle\Concurrent\Exception;
|
|
|
|
class ChannelException extends \Exception implements Exception
|
|
{
|
|
public function __construct(string $message, \Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, 0, $previous);
|
|
}
|
|
}
|