KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > jl > qq > QQError


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 JavaDoc msg, Position pos) {
11         super(msg, pos);
12     }
13 }
14
Popular Tags