PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / exception / RepositoryException.php

RepositoryException.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/exception/RepositoryException.php

18 lines 368 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace AliNext_Lite;;
3
4 use Exception;
5 use Throwable;
6
7 class RepositoryException extends Exception
8 {
9 public function __construct($message, $code = 0, Throwable $previous = null) {
10 parent::__construct($message, $code, $previous);
11 }
12
13 public function __toString() {
14 return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
15 }
16
17 }
18