Agathas.Storefront.Ui.Web.Controllers.BasketController.handle_domain_exception C# (CSharp) Method

handle_domain_exception() public method

public handle_domain_exception ( System action ) : void
action System
return void
        public void handle_domain_exception(System.Action action)
        {
            try
            {
                action();
            }
            catch (DomainException Ex)
            {
                display_to_user(Ex);
            }
        }