| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded |
| 4 |
|
| 5 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 6 |
namespace Yoast\WP\SEO\AI\HTTP_Request\Domain\Exceptions; |
| 7 |
|
| 8 |
/** |
| 9 |
* Class to manage a 500 - Internal server error response. |
| 10 |
* |
| 11 |
* @phpcs:disable Yoast.NamingConventions.ObjectNameDepth.MaxExceeded |
| 12 |
*/ |
| 13 |
class Internal_Server_Error_Exception extends Remote_Request_Exception { |
| 14 |
|
| 15 |
} |
| 16 |
|