1 27 package org.htmlparser.util; 28 29 34 public class ParserException 35 extends ChainedException 36 { 37 public ParserException() {} 38 39 public ParserException(String message) 40 { 41 super(message); 42 } 43 44 public ParserException(Throwable throwable) 45 { 46 super(throwable); 47 } 48 49 public ParserException(String message, Throwable throwable) 50 { 51 super(message, throwable); 52 } 53 } 54 55 | Popular Tags |