at path:
ROOT
/
wp-content
/
plugins
/
elementor
/
core
/
utils
/
exceptions.php
run:
R
W
Run
api
DIR
2026-04-14 05:34:14
R
W
Run
import-export
DIR
2026-04-14 05:34:14
R
W
Run
promotions
DIR
2026-04-14 05:34:14
R
W
Run
svg
DIR
2026-04-14 05:34:14
R
W
Run
ab-test.php
2.45 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-config-provider.php
1.49 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-translation-loader.php
2.51 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
collection.php
10.13 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
exceptions.php
709 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
force-locale.php
3.55 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
hints.php
14.66 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
http.php
981 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
plugins-manager.php
2.84 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
static-collection.php
1.09 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
str.php
1001 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-element-iterator.php
766 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-import-export-utils.php
7.2 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-snapshot-processor.php
6.24 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
version.php
3.78 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
error_log
up
📄
exceptions.php
Save
<?php namespace Elementor\Core\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor exceptions. * * Elementor exceptions handler class is responsible for handling exceptions. * * @since 2.0.0 */ class Exceptions { /** * HTTP status code for bad request error. */ const BAD_REQUEST = 400; /** * HTTP status code for unauthorized access error. */ const UNAUTHORIZED = 401; /** * HTTP status code for forbidden access error. */ const FORBIDDEN = 403; /** * HTTP status code for resource that could not be found. */ const NOT_FOUND = 404; /** * HTTP status code for internal server error. */ const INTERNAL_SERVER_ERROR = 500; }