12 lines
216 B
PHP
12 lines
216 B
PHP
<?php
|
|
|
|
namespace Toloka\PhpApi\Exception\Auth;
|
|
|
|
use Toloka\PhpApi\Exception\AuthException;
|
|
|
|
class InvalidAuthCredentials extends AuthException {
|
|
|
|
protected $message = 'Failed to login using given credentials.';
|
|
|
|
}
|