mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-14 20:18:00 +00:00
10 lines
162 B
PHP
10 lines
162 B
PHP
<?php
|
|
namespace GuzzleHttp\Exception;
|
|
|
|
/**
|
|
* Exception when a server error is encountered (5xx codes)
|
|
*/
|
|
class ServerException extends BadResponseException
|
|
{
|
|
}
|