mirror of
https://github.com/friendica/friendica
synced 2025-02-01 09:39:47 +00:00
11 lines
181 B
PHP
11 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Network\HTTPException;
|
||
|
|
||
|
use Friendica\Network\HTTPException;
|
||
|
|
||
|
class PreconditionFailedException extends HTTPException
|
||
|
{
|
||
|
var $httpcode = 412;
|
||
|
}
|