12 lines
204 B
PHP
12 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
namespace Stripe\Exception;
|
||
|
|
||
|
/**
|
||
|
* IdempotencyException is thrown in cases where an idempotency key was used
|
||
|
* improperly.
|
||
|
*/
|
||
|
class IdempotencyException extends ApiErrorException
|
||
|
{
|
||
|
}
|