src/Phan/PluginV3/UnloadablePluginException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phan\PluginV3;

use Exception;

/**
 * This is thrown to prevent Phan from enabling a configured plugin, e.g. when its dependencies are missing.
 */
class UnloadablePluginException extends Exception
{
}