1 package org.jahia.clipbuilder.html.util; 2 3 8 public class WebClippingException extends Exception { 9 private String type; 10 11 12 18 public WebClippingException(String type, Exception e) { 19 super(e); 20 setType(type); 21 } 22 23 24 29 public void setType(String type) { 30 this.type = type; 31 } 32 33 34 39 public String getType() { 40 return type; 41 } 42 } 43 | Popular Tags |