ShintenScript/LexingException.cs
2023-01-27 11:24:58 +00:00

16 lines
301 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShintenScript
{
public class LexingException : Exception
{
public LexingException(string message) : base(message)
{
}
}
}