summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/XException.cs
blob: f11f5909fe6477f7fc95c4122aaecb289d61909e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace XUtliPoolLib
{
	[Serializable]
	public class XException : ApplicationException
	{
		public XException()
		{
		}

		public XException(string message) : base(message)
		{
		}

		public XException(string message, Exception inner) : base(message, inner)
		{
		}
	}
}