Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="3.6.4-preview-649" />

 LifetimeValidationFailedException

Represents the exception the container throws when the lifetime validation is failed.
using System; namespace Stashbox.Exceptions { public class LifetimeValidationFailedException : Exception { public Type Type { get; } public LifetimeValidationFailedException(Type type, string message) : base(message) { Type = type; } } }