* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Module\Exception; use PrestaShop\PrestaShop\Core\Exception\CoreException; /** * Default module error implementation * The message of this exception will be displayed to the end-user * * You can use it in a module hooked on a Symfony page */ class ModuleErrorException extends CoreException implements ModuleErrorInterface { }