Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 148 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 148 Revision 399
Zeile 27... Zeile 27...
27
 
27
 
28
 
28
 
29
/**
29
/**
30
 * The exception that indicates error of JSON encoding/decoding.
30
 * The exception that indicates error of JSON encoding/decoding.
31
 */
31
 */
32
class JsonException extends \Exception
32
class JsonException extends \JsonException
Zeile 33... Zeile 33...
33
{
33
{
34
}
34
}
35
 
35
 
36
 
36
 
37
/**
37
/**
38
 * The exception that indicates error of the last Regexp execution.
-
 
39
 */
-
 
40
class RegexpException extends \Exception
-
 
41
{
-
 
42
	public const MESSAGES = [
-
 
43
		PREG_INTERNAL_ERROR => 'Internal error',
-
 
44
		PREG_BACKTRACK_LIMIT_ERROR => 'Backtrack limit was exhausted',
-
 
45
		PREG_RECURSION_LIMIT_ERROR => 'Recursion limit was exhausted',
-
 
46
		PREG_BAD_UTF8_ERROR => 'Malformed UTF-8 data',
38
 * The exception that indicates error of the last Regexp execution.
Zeile 47... Zeile 39...
47
		PREG_BAD_UTF8_OFFSET_ERROR => 'Offset didn\'t correspond to the begin of a valid UTF-8 code point',
39
 */
48
		6 => 'Failed due to limited JIT stack space', // PREG_JIT_STACKLIMIT_ERROR
40
class RegexpException extends \Exception