001 002 package railo.runtime.type.comparator; 003 004 import java.util.Comparator; 005 006 import railo.runtime.exp.PageException; 007 008 /** 009 * Comparator that store Exception 010 */ 011 public interface ExceptionComparator extends Comparator { 012 /** 013 * @return Returns the expressionException. 014 */ 015 public PageException getPageException(); 016 }