22 lines
420 B
C#
22 lines
420 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|