[Add] VContainer
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace VContainer
|
||||
{
|
||||
public sealed class VContainerException : Exception
|
||||
{
|
||||
public readonly Type InvalidType;
|
||||
|
||||
public VContainerException(Type invalidType, string message) : base(message)
|
||||
{
|
||||
InvalidType = invalidType;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user