PromiseAlreadyResolvedException.php 433 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\Event;
  4. /**
  5. * This exception is thrown when the user tried to reject or fulfill a promise,
  6. * after either of these actions were already performed.
  7. *
  8. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  9. * @author Evert Pot (http://evertpot.com/)
  10. * @license http://sabre.io/license/ Modified BSD License
  11. */
  12. class PromiseAlreadyResolvedException extends \LogicException
  13. {
  14. }