main
 1using System;
 2using gorilla.commons.utility;
 3
 4namespace Gorilla.Commons.Infrastructure.Container
 5{
 6    public class DependencyResolutionException<T> : Exception
 7    {
 8        public DependencyResolutionException(Exception inner_exception)
 9            : base("Could not resolve {0}".format(typeof (T).FullName), inner_exception)
10        {
11        }
12    }
13}