Files
SIGE-WEB-snapshot/wp-content/plugins/file-manager/backend/app/Exception/PreCommandException.php

21 lines
335 B
PHP

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