lms/vendor/mollie/mollie-api-php/src/Exceptions/IncompatiblePlatform.php
2025-12-15 12:26:23 +01:00

13 lines
361 B
PHP

<?php
namespace Mollie\Api\Exceptions;
class IncompatiblePlatform extends ApiException
{
public const INCOMPATIBLE_PHP_VERSION = 1000;
public const INCOMPATIBLE_CURL_EXTENSION = 2000;
public const INCOMPATIBLE_CURL_FUNCTION = 2500;
public const INCOMPATIBLE_JSON_EXTENSION = 3000;
public const INCOMPATIBLE_RANDOM_BYTES_FUNCTION = 4000;
}