TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
ServiceUnavailableException.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Core\Error\Http
;
3
21
class
ServiceUnavailableException
extends
AbstractServerErrorException
{
22
26
protected
$statusHeaders
= array(\
TYPO3
\CMS\Core\Utility\HttpUtility::HTTP_STATUS_503);
27
31
protected
$title
=
'Service Unavailable (503)'
;
32
36
protected
$message
=
'This page is currently not available.'
;
37
44
public
function
__construct
(
$message
= NULL, $code = 0) {
45
if
(!empty(
$message
)) {
46
$this->message =
$message
;
47
}
48
parent::__construct($this->statusHeaders, $this->message, $this->title, $code);
49
}
50
51
}
TYPO3
TYPO3\CMS\Core\Error\Http\AbstractServerErrorException
Definition:
AbstractServerErrorException.php:21
TYPO3\CMS\Core\Error\Http
Definition:
AbstractClientErrorException.php:2
TYPO3\CMS\Core\Error\Http\ServiceUnavailableException\$statusHeaders
$statusHeaders
Definition:
ServiceUnavailableException.php:26
TYPO3\CMS\Core\Error\Http\ServiceUnavailableException
Definition:
ServiceUnavailableException.php:21
TYPO3\CMS\Core\Error\Http\ServiceUnavailableException\__construct
__construct($message=NULL, $code=0)
Definition:
ServiceUnavailableException.php:44
TYPO3\CMS\Core\Error\Http\ServiceUnavailableException\$message
$message
Definition:
ServiceUnavailableException.php:36
TYPO3\CMS\Core\Error\Http\ServiceUnavailableException\$title
$title
Definition:
ServiceUnavailableException.php:31
typo3
sysext
core
Classes
Error
Http
ServiceUnavailableException.php
Generated on Wed Aug 7 2019 09:52:20 for TYPO3 CMS by
1.8.13