mirror of
https://github.com/friendica/friendica
synced 2025-04-22 09:50:12 +00:00
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
|
|
namespace Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
class InternalServerErrorException extends HTTPException
|
|
{
|
|
protected $code = 500;
|
|
}
|