for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xoops\Core\Exception;
/**
* NotSupportedException - represents an exception caused by accessing features that are not supported.
*
* @category Xoops\Core\Exception
* @package Xoops
* @author trabis <[email protected]>
* @copyright 2015 XOOPS Project (http://xoops.org)
* @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
* @link http://xoops.org
*/
class NotSupportedException extends \Exception
{
* @return string the user-friendly name of this exception
public function getName()
return 'Not Supported';
}