mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 09:01:55 +03:00
IoC and NavigationService implementation
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace MicroIoc
|
||||
{
|
||||
public class ResolutionException : Exception
|
||||
{
|
||||
public ResolutionException(string message)
|
||||
: base(message) { }
|
||||
|
||||
public ResolutionException(string message, Exception innerException)
|
||||
: base(message, innerException) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user