mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
14 lines
239 B
PHP
14 lines
239 B
PHP
<?php
|
|
|
|
namespace Stripe\Exception;
|
|
|
|
/**
|
|
* PermissionException is thrown in cases where access was attempted on a
|
|
* resource that wasn't allowed.
|
|
*
|
|
* @package Stripe\Exception
|
|
*/
|
|
class PermissionException extends ApiErrorException
|
|
{
|
|
}
|