File "PreCommandException.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/file-manager/backend/app/Exception/PreCommandException.php
File size: 335 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitApps\FM\Exception;

use Exception;

\defined('ABSPATH') or exit();

class PreCommandException extends Exception
{
    public function getError()
    {
        return [
            'preventexec' => true,
            'results'     => [
                'error' => $this->getMessage(),
            ]
        ];
    }
}