Prototyped several interfaces, added basic topics stuff and exception.

This commit is contained in:
conky
2022-10-13 20:18:48 +03:00
parent 4bfc4ccdaf
commit f3d397404f
10 changed files with 122 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace Toloka\PhpApi\Exception\Auth;
use Toloka\PhpApi\Exception\AuthException;
class InvalidAuthCredentials extends AuthException {
protected $message = 'Failed to login using given credentials.';
}