| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') or die("Cannot access pages directly."); |
| 4 |
|
| 5 |
class WDTException extends Exception { |
| 6 |
|
| 7 |
public function __construct($message, $code = 0, Exception $previous = null) { |
| 8 |
parent::__construct($message, $code, $previous); |
| 9 |
} |
| 10 |
|
| 11 |
public function __toString() { |
| 12 |
return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; |
| 13 |
} |
| 14 |
|
| 15 |
} |
| 16 |
|
| 17 |
?> |