1 package polyglot.ext.jl.qq;2 3 import polyglot.util.InternalCompilerError;4 import polyglot.util.Position;5 6 /**7 * Signals an error in the quasiquoter.8 */9 public class QQError extends InternalCompilerError {10 public QQError(String msg, Position pos) {11 super(msg, pos);12 }13 }14