| Current Path : /var/www/html/sumar.com.py/wp-content/plugins/wp-statistics/src/Exception/ |
| Current File : /var/www/html/sumar.com.py/wp-content/plugins/wp-statistics/src/Exception/SystemErrorException.php |
<?php
namespace WP_Statistics\Exception;
use Exception;
class SystemErrorException extends Exception
{
public function __construct($message, $code = 0, Exception $previous = null)
{
$message = sprintf(__('System error: %s', 'wp-statistics'), $message);
parent::__construct($message, $code, $previous);
}
}