📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 17:15:01
📂
/ (Root)
/
usr
/
local
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
src
/
Internal
/
DependencyManagement
📍 /usr/local/sitepad/editor/site-data/plugins/kkart-pro/src/Internal/DependencyManagement
🔄 Refresh
✏️
Editing: ContainerException.php
Read Only
<?php /** * ExtendedContainer class file. */ namespace Automattic\Kkart\Internal\DependencyManagement; /** * Class ContainerException. * Used to signal error conditions related to the dependency injection container. */ class ContainerException extends \Exception { /** * Create a new instance of the class. * * @param null $message The exception message to throw. * @param int $code The error code. * @param Exception|null $previous The previous throwable used for exception chaining. */ public function __construct( $message = null, $code = 0, Exception $previous = null ) { parent::__construct( $message, $code, $previous ); } }
💾 Save Changes
❌ Cancel