blob: bd9356bc142a08848f344d8573cf0f985a5df528 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace Stripe\Exception;
/**
* AuthenticationException is thrown when invalid credentials are used to
* connect to Stripe's servers.
*/
class AuthenticationException extends ApiErrorException
{
}
|