PluginProbe
WPSSO Core – Complete Schema Markup and Meta Tags / 22.7.0
WPSSO Core – Complete Schema Markup and Meta Tags v22.7.0
22.7.0 22.6.1 22.6.0 22.5.3 22.5.2 22.5.1 22.4.0 22.3.0 22.2.1 22.2.0 22.1.3 22.1.2 22.1.1 22.1.0 22.0.0 21.13.3 21.13.2 trunk 21.13.1
← All changes | lib/exception.php +62 -0 22.5.222.7.0 View file →
@@ -1,0 +1,62 @@
1 +<?php
2 +/*
3 + * License: GPLv3
4 + * License URI: https://www.gnu.org/licenses/gpl.txt
5 + * Copyright 2012-2026 Jean-Sebastien Morisset (https://wpsso.com/)
6 + */
7 +
8 +if ( ! defined( 'ABSPATH' ) ) {
9 +
10 + die( 'These aren\'t the droids you\'re looking for.' );
11 +}
12 +
13 +if ( ! defined( 'WPSSO_PLUGINDIR' ) ) {
14 +
15 + die( 'Do. Or do not. There is no try.' );
16 +}
17 +
18 +if ( ! class_exists( 'SucomErrorException' ) ) {
19 +
20 + require_once WPSSO_PLUGINDIR . 'lib/com/exception.php';
21 +}
22 +
23 +if ( ! class_exists( 'WpssoErrorException' ) ) {
24 +
25 + class WpssoErrorException extends SucomErrorException {
26 +
27 + protected $p;
28 +
29 + public function __construct( $errstr = '', $errcode = null, $severity = E_ERROR, $filename = __FILE__, $lineno = __LINE__, ?Exception $previous = null ) {
30 +
31 + $this->p =& Wpsso::get_instance();
32 +
33 + if ( $this->p->debug->enabled ) {
34 +
35 + $this->p->debug->mark();
36 + }
37 +
38 + parent::__construct( $errstr, $errcode, $severity, $filename, $lineno, $previous ); // Calls SucomErrorException::__construct().
39 + }
40 +
41 + public function errorMessage( $ret = false ) {
42 +
43 + /*
44 + * getMessage(); // Message of exception.
45 + * getCode(); // Code of exception.
46 + * getFile(); // Source filename.
47 + * getLine(); // Source line.
48 + * getTrace(); // An array of the backtrace().
49 + * getPrevious(); // Previous exception.
50 + * getTraceAsString(); // Formatted string of trace.
51 + */
52 + $errstr = $this->getMessage();
53 +
54 + if ( $this->p->debug->enabled ) {
55 +
56 + $this->p->debug->log( $errstr );
57 + }
58 +
59 + $this->p->notice->err( $errstr );
60 + }
61 + }
62 +}