12345678910111213141516171819 |
- <?php
- /**
- * Copyright (c) Ivan Akimov.
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * @see https://github.com/vinkla/hashids
- */
- namespace app\utils\Hashids;
- use InvalidArgumentException;
- class HashidsException extends InvalidArgumentException
- {
- //
- }
|