1 package org.codehaus.groovy.syntax.lexer;
2
3 public class UnterminatedStringLiteralException extends LexerException {
4 public UnterminatedStringLiteralException(int line, int column) {
5 super("unterminated string literal", line, column);
6 }
7 }