KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > codehaus > groovy > syntax > lexer > UnterminatedStringLiteralException


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 }
8
Popular Tags