mirror of
https://github.com/friendica/friendica
synced 2025-04-17 05:19:04 +00:00
10 lines
169 B
PHP
10 lines
169 B
PHP
<?php
|
|
|
|
namespace Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
class NotImplementedException extends HTTPException
|
|
{
|
|
protected $code = 501;
|
|
}
|