blob: 7cb80e65f6a9cd9252b7f11f69e6230940b14ca3 [file] [log] [blame]
package org.codehaus.groovy.syntax.lexer;
public class UnterminatedStringLiteralException extends LexerException {
public UnterminatedStringLiteralException(int line, int column) {
super("unterminated string literal", line, column);
}
}