public class RuleAndNodeDontMatchException extends Exception{
   public RuleAndNodeDontMatchException(TreeNode node){
     	super("Left part of the rule doesn't match with the found node:"+node.toString());
   }
}