15 lines
284 B
C#
15 lines
284 B
C#
using System;
|
|
|
|
namespace KdTree
|
|
{
|
|
// Token: 0x02000008 RID: 8
|
|
public class DuplicateNodeError : Exception
|
|
{
|
|
// Token: 0x06000023 RID: 35 RVA: 0x000021C8 File Offset: 0x000003C8
|
|
public DuplicateNodeError()
|
|
: base("Cannot Add Node With Duplicate Coordinates")
|
|
{
|
|
}
|
|
}
|
|
}
|