Exception.php 423 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * TLDDatabase: Abstraction for Public Suffix List in PHP.
  4. *
  5. * @link https://github.com/layershifter/TLDDatabase
  6. *
  7. * @copyright Copyright (c) 2016, Alexander Fedyashov
  8. * @license https://raw.githubusercontent.com/layershifter/TLDDatabase/master/LICENSE Apache 2.0 License
  9. */
  10. namespace LayerShifter\TLDDatabase\Exceptions;
  11. /**
  12. * Base exception.
  13. */
  14. abstract class Exception extends \Exception
  15. {
  16. }