1 12 package org.displaytag.exception; 13 14 import org.displaytag.Messages; 15 16 17 22 public class RuntimeLookupException extends RuntimeException  23 { 24 25 28 private static final long serialVersionUID = 899149338534L; 29 30 35 public RuntimeLookupException(Class sourceClass, String property, BaseNestableJspTagException cause) 36 { 37 super(Messages.getString("RuntimeLookupException.msg", new Object []{property, cause.getMessage()})); 39 } 40 41 } | Popular Tags |