summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Exception/UnknownApiErrorException.php
blob: 2617979f1aa9b1f8ff38d5cbbc31232b748f854d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Stripe\Exception;

/**
 * UnknownApiErrorException is thrown when the client library receives an
 * error from the API it doesn't know about. Receiving this error usually
 * means that your client library is outdated and should be upgraded.
 */
class UnknownApiErrorException extends ApiErrorException
{
}