mirror of
https://github.com/antonkomarev/github-profile-views-counter.git
synced 2026-08-02 02:08:42 -04:00
Add PDO repository (#2)
* Add PDO repository * Make file storage path configurable * Name username query property required * Add special exception class
This commit is contained in:
21
contracts/Exceptions/InvalidPathException.php
Normal file
21
contracts/Exceptions/InvalidPathException.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of GitHub Profile Views Counter.
|
||||
*
|
||||
* (c) Anton Komarev <anton@komarev.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Contracts\Komarev\GitHubProfileViewsCounter;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
final class InvalidPathException extends InvalidArgumentException implements
|
||||
GitHubProfileViewsCounterThrowableInterface
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user