ArenaNet.Sprout.IoC.ComponentNotFoundException.ComponentNotFoundException C# (CSharp) Method

ComponentNotFoundException() public method

public ComponentNotFoundException ( Type componentType, string name ) : System
componentType System.Type
name string
return System
        public ComponentNotFoundException(Type componentType, string name)
            : base("Component [type='" + (componentType == null ? "Any" : componentType.FullName) + "', name='" + name + "'] not found.")
        {
        }
ComponentNotFoundException