1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 21:31:18 +01:00
amp/lib/Failure.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2016-05-21 09:44:52 -05:00
<?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.
*/
2016-05-21 12:07:08 -05:00
public function __construct($exception) {
2016-05-21 09:44:52 -05:00
if (!$exception instanceof \Throwable && !$exception instanceof \Exception) {
2016-05-21 12:12:55 -05:00
throw new \InvalidArgumentException("Failure reason must be an exception");
2016-05-21 09:44:52 -05:00
}
$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);
}
}
}