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