Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="2.9.0-preview-522" />

 ResolutionFailedException

Represents the exception threw when a service resolution failed.
using System; namespace Stashbox.Exceptions { public class ResolutionFailedException : ExceptionBaseException { public ResolutionFailedException(Type type, string message = "service not registered or unresolvable type requested.", Exception innerException = null) : base(type, "Could not resolve type " + type.FullName + "." + Environment.NewLine + "Reason: " + message, innerException) { } } }