Submit
Path:
~
/
home
/
getwphos
/
www
/
techniquetechs
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
DependencyManagement
/
File Content:
ContainerException.php
<?php /** * ExtendedContainer class file. */ namespace Automattic\WooCommerce\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 ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
ServiceProviders
---
0755
AbstractServiceProvider.php
7222 bytes
0644
ContainerException.php
687 bytes
0644
Definition.php
1854 bytes
0644
ExtendedContainer.php
8797 bytes
0644
RuntimeContainer.php
9132 bytes
0644
N4ST4R_ID | Naxtarrr