HashidsException.php 349 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright (c) Ivan Akimov.
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @see https://github.com/vinkla/hashids
  9. */
  10. namespace app\utils\Hashids;
  11. use InvalidArgumentException;
  12. class HashidsException extends InvalidArgumentException
  13. {
  14. //
  15. }