Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 148 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
/**
4
 * This file is part of the Nette Framework (https://nette.org)
5
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6
 */
7
 
8
declare(strict_types=1);
9
 
10
namespace Nette\Utils;
11
 
12
 
13
/**
14
 * The exception that is thrown when an image error occurs.
15
 */
16
class ImageException extends \Exception
17
{
18
}
19
 
20
 
21
/**
22
 * The exception that indicates invalid image file.
23
 */
24
class UnknownImageFileException extends ImageException
25
{
26
}
27
 
28
 
29
/**
30
 * The exception that indicates error of JSON encoding/decoding.
31
 */
399 lars 32
class JsonException extends \JsonException
148 lars 33
{
34
}
35
 
36
 
37
/**
38
 * The exception that indicates error of the last Regexp execution.
39
 */
40
class RegexpException extends \Exception
41
{
42
}
43
 
44
 
45
/**
46
 * The exception that indicates assertion error.
47
 */
48
class AssertionException extends \Exception
49
{
50
}