summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/XErrorEventArgTypeException.cs
blob: 743ff074e6ef6ac3c4f289b0a03b7cf948a05eb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace XUtliPoolLib
{
	[Serializable]
	public class XErrorEventArgTypeException : XException
	{
		public XErrorEventArgTypeException(string message) : base(message)
		{
		}

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