mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 07:01:38 +03:00
13 lines
322 B
C#
13 lines
322 B
C#
using System;
|
|
|
|
namespace MicroIoc
|
|
{
|
|
public class ResolutionException : Exception
|
|
{
|
|
public ResolutionException(string message)
|
|
: base(message) { }
|
|
|
|
public ResolutionException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
}
|
|
} |