14 lines
242 B
PHP
Executable File
14 lines
242 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe\Exception;
|
|
|
|
/**
|
|
* AuthenticationException is thrown when invalid credentials are used to
|
|
* connect to Stripe's servers.
|
|
*
|
|
* @package Stripe\Exception
|
|
*/
|
|
class AuthenticationException extends ApiErrorException
|
|
{
|
|
}
|