Worms4Editor/LibXom/Exceptions/XomContainerNotFoundExcepti...

17 lines
326 B
C#

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