14 lines
367 B
C#
14 lines
367 B
C#
|
using System;
|
|||
|
|
|||
|
namespace BinaryDad.Extensions
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class MaxRecursionException : Exception
|
|||
|
{
|
|||
|
public MaxRecursionException() { }
|
|||
|
|
|||
|
public MaxRecursionException(string message) : base(message) { }
|
|||
|
|
|||
|
public MaxRecursionException(string message, Exception innerException) : base(message, innerException) { }
|
|||
|
}
|
|||
|
}
|