meowlang/parser/InvalidImportPathException.cs
2022-02-12 18:30:04 +01:00

10 lines
224 B
C#

using Antlr4.Runtime;
namespace meowlang.parser;
public class InvalidImportPathException : MeowVisitorException
{
public InvalidImportPathException(IToken context, string message) : base(context, message)
{
}
}