HashidsException.php 438 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of Hashids.
  4. *
  5. * (c) Ivan Akimov <ivan@barreleye.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 Hashids;
  11. use InvalidArgumentException;
  12. /**
  13. * This is the hashids exception class.
  14. *
  15. * @author Vincent Klaiber <hello@doubledip.se>
  16. */
  17. class HashidsException extends InvalidArgumentException
  18. {
  19. //
  20. }