UnknownApiErrorException.php 323 B

123456789101112
  1. <?php
  2. namespace Stripe\Exception;
  3. /**
  4. * UnknownApiErrorException is thrown when the client library receives an
  5. * error from the API it doesn't know about. Receiving this error usually
  6. * means that your client library is outdated and should be upgraded.
  7. */
  8. class UnknownApiErrorException extends ApiErrorException
  9. {
  10. }