main
1using System;
2using momoney.presentation.presenters;
3
4namespace momoney.presentation.views
5{
6 public interface IUnhandledErrorView : IView<IUnhandledErrorPresenter>
7 {
8 void display(Exception exception);
9 }
10}