Question

I have phtml form, whenever i get any error it shows a page like this enter image description here

i want to show these type of errors like this enter image description here

Was it helpful?

Solution

In your module controller

try {
            //Your program logic

    } catch (\Exception $e) {
            $this->messageManager->addErrorMessage("Your error message{$e->getMessage()}.");
            $this->_redirect('*/*/');
            return;
   }
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top