1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Failure.php

29 lines
483 B
PHP

<?php
namespace Amp;
/**
* Represents a failed computation resolution
*/
class Failure implements Promise {
private $error;
public function __construct(\Exception $error) {
$this->error = $error;
}
/**
* {@inheritDoc}
*/
public function when(callable $func) {
$func($this->error, $result = null, $callbackData = null);
}
/**
* {@inheritDoc}
*/
public function watch(callable $func) {
return;
}
}