summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/Container/DependencyResolutionException.cs
blob: fe36112bb87a9327c506361a0f7ab3fe9040fcd1 (plain)
1
2
3
4
5
6
7
8
9
using System;
using Notepad.Infrastructure.Extensions;

namespace Notepad.Infrastructure.Container {
    public class DependencyResolutionException<T> : Exception {
        public DependencyResolutionException(Exception innerException)
            : base("Could not resolve {0}".FormatWith(typeof (T).FullName), innerException) {}
    }
}