1 12 package org.displaytag.exception; 13 14 19 public class WrappedRuntimeException extends BaseNestableRuntimeException 20 { 21 22 25 private static final long serialVersionUID = 899149338534L; 26 27 32 public WrappedRuntimeException(Class source, Throwable cause) 33 { 34 super(source, cause.getMessage(), cause); 35 } 36 37 40 public SeverityEnum getSeverity() 41 { 42 return SeverityEnum.WARN; 43 } 44 45 } 46 | Popular Tags |