Geen omschrijving

UnreachableException.php 718B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * This file is part of the Carbon package.
  4. *
  5. * (c) Brian Nesbitt <brian@nesbot.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Carbon\Exceptions;
  11. use Exception;
  12. use RuntimeException as BaseRuntimeException;
  13. class UnreachableException extends BaseRuntimeException implements RuntimeException
  14. {
  15. /**
  16. * Constructor.
  17. *
  18. * @param string $message
  19. * @param int $code
  20. * @param Exception|null $previous
  21. */
  22. public function __construct($message, $code = 0, Exception $previous = null)
  23. {
  24. parent::__construct($message, $code, $previous);
  25. }
  26. }