Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/framework/Message/
Upload File :
Current File : /var/www/html/vendor/magento/framework/Message/ExceptionMessageFactoryInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\Message;

use Magento\Framework\Exception\RuntimeException;

/**
 * Interface \Magento\Framework\Message\ExceptionMessageFactoryInterface
 *
 */
interface ExceptionMessageFactoryInterface
{
    /**
     * Creates error message based on Exception type and the data it contains
     *
     * @param \Exception $exception
     * @param string $type
     * @return MessageInterface
     * @throws RuntimeException
     */
    public function createMessage(\Exception $exception, $type = MessageInterface::TYPE_ERROR);
}