.NET API 145,920 bytes
LifetimeValidationFailedException
using System;
namespace Stashbox.
Exceptions
{
public class LifetimeValidationFailedException :
Exception
{
public Type Type { get; }
public LifetimeValidationFailedException(
Type type,
string message)
:
base(
message)
{
Type =
type;
}
}
}