KoogleV4/GameModel/Exceptions/KoogleException.cs

17 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GameModel.Exceptions
{
public class KoogleException : Exception
{
public KoogleException(string message, Exception innerException) : base(message, innerException)
{ }
public KoogleException(string message) : base(message)
{ }
}
}