11 lines
214 B
PHP
11 lines
214 B
PHP
<?php
|
|
|
|
namespace CoinGate\Exception;
|
|
|
|
/**
|
|
* InternalServerError is thrown when something wrong in CoinGate and HTTP Status: 500 (Internal Server Error).
|
|
*/
|
|
class InternalServerError extends ApiErrorException
|
|
{
|
|
}
|