public function testInvalidAccessKeyIdentifier(): void
{ $exception = ApiException::
invalidAccessKeyIdentifier();
static::
assertEquals(ApiException::API_INVALID_ACCESS_KEY_IDENTIFIER_EXCEPTION,
$exception->
getErrorCode());
} public function testSalesChannelInMaintenanceMode(): void
{ $exception = ApiException::
salesChannelInMaintenanceMode();
static::
assertEquals(ApiException::API_SALES_CHANNEL_MAINTENANCE_MODE,
$exception->
getErrorCode());
}}