PluginProbe
WooCommerce / 11.1.0-rc.2
WooCommerce v11.1.0-rc.2
11.1.0 11.1.0-rc.2 11.1.0-rc.1 11.1.0-beta.2 11.1.0-beta.1 11.0.1 11.0.0 11.0.0-rc.3 11.0.0-rc.2 11.0.0-rc.1 11.0.0-beta.2 11.0.0-beta.1 10.9.4 10.9.3 10.9.2 10.9.1 10.9.0 10.9.0-rc.1 10.9.0-beta.2 10.9.0-beta.1 10.8.1 10.8.0 10.8.0-rc.1 10.8.0-beta.2 10.8.0-beta.1 All 648 releases
woocommerce / src / Internal / DependencyManagement / ContainerException.php
ContainerException.php
24 lines 688 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * ContainerException class file.
4 */
5
6 namespace Automattic\WooCommerce\Internal\DependencyManagement;
7
8 /**
9 * Class ContainerException.
10 * Used to signal error conditions related to the dependency injection container.
11 */
12 class ContainerException extends \Exception {
13 /**
14 * Create a new instance of the class.
15 *
16 * @param null $message The exception message to throw.
17 * @param int $code The error code.
18 * @param \Exception|null $previous The previous throwable used for exception chaining.
19 */
20 public function __construct( $message = null, $code = 0, ?\Exception $previous = null ) {
21 parent::__construct( $message, $code, $previous );
22 }
23 }
24