Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="3.1.0-preview-535" />

 InvalidRegistrationException

Represents an exception the container throws when it detects an invalid registration.
using System; namespace Stashbox.Exceptions { public class InvalidRegistrationException : ExceptionBaseException { public InvalidRegistrationException(Type type, string message, Exception innerException = null) : base(type, "Invalid registration with type " + type.FullName + ". Details: " + message, innerException) { } } }