RuntimeException.php 282 B

12345678910111213
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Exception;
  7. /**
  8. * Exception thrown if an error which can only be found on runtime occurs.
  9. */
  10. class RuntimeException extends LocalizedException
  11. {
  12. }