meowlang/parser/InvalidImportPathException.cs

10 lines
224 B
C#
Raw Normal View History

2022-02-12 18:30:04 +01:00
using Antlr4.Runtime;
namespace meowlang.parser;
public class InvalidImportPathException : MeowVisitorException
{
public InvalidImportPathException(IToken context, string message) : base(context, message)
{
}
}