master
1using System;
2using Notepad.Infrastructure.Extensions;
3
4namespace Notepad.Infrastructure.Container {
5 public class DependencyResolutionException<T> : Exception {
6 public DependencyResolutionException(Exception innerException)
7 : base("Could not resolve {0}".FormatWith(typeof (T).FullName), innerException) {}
8 }
9}