Initial Commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Zenject
|
||||
{
|
||||
[DebuggerStepThrough]
|
||||
[NoReflectionBaking]
|
||||
public class ZenjectException : Exception
|
||||
{
|
||||
public ZenjectException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ZenjectException(
|
||||
string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user