1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Failure.php
Aaron Piotrowski a309a243c2 Fix formatting
2016-05-21 12:07:08 -05:00

43 lines
1.1 KiB
PHP

<?php
namespace Amp\Awaitable;
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 ($watcher, $exception) {
throw $exception;
}, $exception);
} catch (\Exception $exception) {
Loop::defer(static function ($watcher, $exception) {
throw $exception;
}, $exception);
}
}
}