Worms4Editor/LibXom/Exceptions/XomTypeNotFoundException.cs

17 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibXom.Exceptions
{
public class XomTypeNotFoundException : XomException
{
internal XomTypeNotFoundException(string message) : base(message)
{
}
}
}