org.xbib.cql.util.UnterminatedQuotedStringException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cql Show documentation
Show all versions of cql Show documentation
Contextual Query Language compiler for Java
The newest version!
package org.xbib.cql.util;
/**
* Exception for string tokenizing.
*/
public class UnterminatedQuotedStringException extends RuntimeException {
private static final long serialVersionUID = 3114942659171051019L;
public UnterminatedQuotedStringException(String msg) {
super(msg);
}
}