22 lines
319 B
PHP
22 lines
319 B
PHP
<?php
|
|
/**
|
|
* @package awf
|
|
* @copyright Copyright (c)2014-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU GPL version 3 or later
|
|
*/
|
|
|
|
namespace Awf\Exception;
|
|
|
|
/**
|
|
* Interface Generic
|
|
*
|
|
* The generic root Awf exception
|
|
*
|
|
* @codeCoverageIgnore
|
|
*
|
|
* @package Awf\Exception
|
|
*/
|
|
interface Generic
|
|
{
|
|
}
|