16 lines
232 B
PHP
16 lines
232 B
PHP
<?php
|
|
|
|
namespace Kanboard\Core\ExternalLink;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* External Link Provider Not Found Exception
|
|
*
|
|
* @package externalLink
|
|
* @author Frederic Guillot
|
|
*/
|
|
class ExternalLinkProviderNotFound extends Exception
|
|
{
|
|
}
|