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