.NET API 141,312 bytes
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;
}
}
}