friendship ended with social-app. php is my new best friend
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
8declare(strict_types=1);
9
10namespace Nette\Utils;
11
12
13/**
14 * An error occurred while working with the image.
15 */
16class ImageException extends \Exception
17{
18}
19
20
21/**
22 * The image file is invalid or in an unsupported format.
23 */
24class UnknownImageFileException extends ImageException
25{
26}
27
28
29/**
30 * JSON encoding or decoding failed.
31 */
32class JsonException extends \JsonException
33{
34}
35
36
37/**
38 * Regular expression pattern or execution failed.
39 */
40class RegexpException extends \Exception
41{
42}
43
44
45/**
46 * Type validation failed. The value doesn't match the expected type constraints.
47 */
48class AssertionException extends \Exception
49{
50}