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