File: /home/accemeff/vendor/craftcms/cms/src/errors/FieldGroupNotFoundException.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\errors;
use yii\base\Exception;
/**
* Class FieldGroupNotFoundException
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class FieldGroupNotFoundException extends Exception
{
/**
* @return string the user-friendly name of this exception
*/
public function getName()
{
return 'Field group not found';
}
}