main
 1using System;
 2using MoMoney.Service.Infrastructure.Eventing;
 3
 4namespace momoney.presentation.model.eventing
 5{
 6    public class UnhandledErrorOccurred : IEvent
 7    {
 8        public UnhandledErrorOccurred(Exception error)
 9        {
10            this.error = error;
11        }
12
13        public Exception error { get; private set; }
14    }
15}