Exception.php 307 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Setup;
  7. use Magento\Framework\Exception\LocalizedException;
  8. /**
  9. * Exception thrown if an error occurs on setup process.
  10. */
  11. class Exception extends LocalizedException
  12. {
  13. }