package no.uio.ifi.refaktor.analyze.exceptions; import org.eclipse.jdt.core.dom.ASTNode; public class IllegalStatementFoundException extends CheckerException { private static final long serialVersionUID = -4093833907546449318L; public IllegalStatementFoundException(ASTNode problemNode) { this(problemNode.getClass()); } public IllegalStatementFoundException(Class statementClass) { super(statementClass.getCanonicalName()); } }