D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
oems
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Exception
/
Filename :
LicenseException.php
back
Copy
<?php namespace WP_Statistics\Exception; use Exception; class LicenseException extends Exception { private $status; public function __construct($message, $status = '', $code = 0, $previous = null) { parent::__construct($message, $code, $previous); $this->status = $status; } public function getStatus() { return $this->status; } }