16 lines
198 B
PHP
16 lines
198 B
PHP
<?php
|
|
|
|
namespace Kanboard\Core\Plugin;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Class PluginException
|
|
*
|
|
* @package Kanboard\Core\Plugin
|
|
* @author Frederic Guillot
|
|
*/
|
|
class PluginException extends Exception
|
|
{
|
|
}
|