1 64 65 package com.jcorporate.expresso.services.html; 66 67 72 73 import com.jcorporate.expresso.kernel.exception.ChainedException; 74 75 76 83 public class HtmlException 84 extends ChainedException { 85 88 public HtmlException() { 89 super(); 90 } 91 92 97 public HtmlException(String s) { 98 super(s); 99 } 100 101 107 public HtmlException(String s, Throwable t) { 108 super(s, t); 109 } 110 111 116 public HtmlException(Throwable t) { 117 super(t); 118 } 119 120 } 121 122 | Popular Tags |