blob: dd4febed19b9edb899fc9d202d185a9f771d19a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<?php
/**
* Exception.class.php
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* @author Moritz Strohm <strohm@data-quest.de>
* @copyright 2019-2024
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
*/
namespace Studip;
/**
* This class is a specialisation of the standard Exception class
* to distinguish Stud.IP exceptions from standard exceptions.
*/
class Exception extends \Exception
{
/**
* GENERAL_ERROR means that an unspecified error has occurred.
*/
const GENERAL_ERROR = 0;
/**
* END_BEFORE_BEGINNING means that a time range is specified
* where the end lies before the beginning.
*/
const END_BEFORE_BEGINNING = 1;
protected ?\Range $range = null;
public function __construct(string $message = '', int $code = 0, ?\Range $range = null)
{
parent::__construct($message, $code);
$this->range = $range;
}
/**
* @return \Range|null The range for the exception or null if the exception is not associated to a range.
*/
public function getRange() : ?\Range
{
return $this->range;
}
/**
* Converts the content of the exception into an Information object.
*
* @return Information An Information representation of the exception.
*/
public function getInformation() : Information
{
return new Information(
$this->getMessage(),
\Studip\Information::ERROR,
(string) $this->getCode(),
$this->range
);
}
}
|