1 17 package org.apache.activemq.web; 18 19 import javax.servlet.ServletException ; 20 21 25 public class NoSuchViewStyleException extends ServletException { 26 27 private static final long serialVersionUID = -3590398087507019767L; 28 29 private final String style; 30 31 public NoSuchViewStyleException(String style, Throwable cause) { 32 super("The view style '" + style + "' could not be created", cause); 33 this.style = style; 34 } 35 36 public String getStyle() { 37 return style; 38 } 39 } 40 | Popular Tags |