Throws an exception when the installer has not yet been executed.

This commit is contained in:
Fernando Ontiveros
2025-06-17 16:02:14 -04:00
parent aa91c83867
commit eeb4064a9c
5 changed files with 150 additions and 147 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace ProcessMaker\Exception;
use G;
/**
* Class ExecuteInstallerException
* @package ProcessMaker\Exception
*/
class ExecuteInstallerException extends \Exception
{
/**
* @param string $message
*/
public function __construct()
{
parent::__construct("");
}
}