mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
use Interop\Async\Loop;
|
|
use Interop\Async\Awaitable;
|
|
|
|
class Failure implements Awaitable {
|
|
/**
|
|
* @var \Exception|\Throwable $exception
|
|
*/
|
|
private $exception;
|
|
|
|
/**
|
|
* @param \Throwable|\Exception $exception Rejection reason.
|
|
*
|
|
* @throws \InvalidArgumentException If a non-exception is given.
|
|
*/
|
|
public function __construct($exception) {
|
|
if (!$exception instanceof \Throwable && !$exception instanceof \Exception) {
|
|
throw new \InvalidArgumentException("Failure reason must be an exception");
|
|
}
|
|
|
|
$this->exception = $exception;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function when(callable $onResolved) {
|
|
try {
|
|
$onResolved($this->exception, null);
|
|
} catch (\Throwable $exception) {
|
|
Loop::defer(static function () use ($exception) {
|
|
throw $exception;
|
|
});
|
|
} catch (\Exception $exception) {
|
|
Loop::defer(static function () use ($exception) {
|
|
throw $exception;
|
|
});
|
|
}
|
|
}
|
|
}
|