Elgg
Version 6.1
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
engine
classes
Elgg
Exceptions
Http
ValidationException.php
Go to the documentation of this file.
1
<?php
2
3
namespace
Elgg\Exceptions\Http
;
4
5
use
Elgg\Exceptions\HttpException
;
6
12
class
ValidationException
extends
HttpException
{
13
17
public
function
__construct
(
string
$message
=
''
,
int
$code
= 0, \Throwable $previous = null) {
18
if
(!
$code
) {
19
$code
=
ELGG_HTTP_BAD_REQUEST
;
20
}
21
22
parent::__construct(
$message
,
$code
, $previous);
23
}
24
}
$message
$message
Definition:
set_maintenance_mode.php:7
$code
$code
Definition:
changepassword.php:12
Elgg\Exceptions\Http
Definition:
BadRequestException.php:3
Elgg\Exceptions\HttpException
Generic HTTP exception.
Definition:
HttpException.php:10
ELGG_HTTP_BAD_REQUEST
const ELGG_HTTP_BAD_REQUEST
Definition:
constants.php:64
Elgg\Exceptions\Http\ValidationException\__construct
__construct(string $message= '', int $code=0,\Throwable $previous=null)
{}
Definition:
ValidationException.php:17
HttpException
Elgg\Exceptions\Http\ValidationException
Action validation exception.
Definition:
ValidationException.php:12
Generated on Wed Dec 4 2024 00:00:20 for Elgg by
1.8.11