In my custom Orchard module I have written some ftp client code within a controller action that happens to throw a custom FtpException during login. I've wrapped the Login code in a try-catch and am sending a notification message back to the view if there's an error. The problem is that the error is still bubbling up and showing the standard "Oops. Something went wrong ... sorry" Orchard error message. Here's the code I am wrapping:
try
{
ftpClient.Login();
ftpClient.Upload(fileName);
}
catch (FtpException ex)
{
services.Notifier.Error(T("There was an error sending the file - {0}.", ex.Message));
return RedirectToAction("Edit", "Project");
}
finally
{
ftpClient.Close();
}
services.Notifier.Information(T("File uploaded successfully."));
return RedirectToAction("Edit", "Project");
If I look in the Orchard logs, I see that an FTP exception is thrown, from within ftpClient.Login(). The code in the catch block is executed, so I know that the exception has been handled. Trouble is, the unhandled exception behaviour is still being displayed by Orchard. How can I stop the exception from bubbling up so that my RedirectToAction will fire?