File "SystemErrorException.php"

Full path: /var/www/html/cemeau/wp-content/plugins/wp-statistics/src/Exception/SystemErrorException.php
File size: 336 bytes
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?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);
    }
}