DependencyResolverException
using Castle.Core.Internal;
using System;
namespace Castle.MicroKernel.Resolvers
{
    [Serializable]
    public class DependencyResolverException : Exception
    {
        public DependencyResolverException(string message, Exception innerException)
            : base(message, innerException)
        {
            this.SetUp();
        }
        public DependencyResolverException(string message)
            : base(message)
        {
            this.SetUp();
        }
    }
}