namespace meowlang.typechecker; public class UndeclaredGenericParameterException : Exception { public string Name { get; } public UndeclaredGenericParameterException(string name) { Name = name; } }