1 package net.logAnalyzer.handlers; 2 3 /*** 4 * Exception thrown by {@link LALogHandler#parse()} process. 5 * 6 * @author Karim REFEYTON 7 * @version 0.1 8 */ 9 public class ParsingException extends Exception { 10 private static final long serialVersionUID = 1L; 11 12 /*** 13 * Constructs a new exception. 14 */ 15 public ParsingException() { 16 super(); 17 } 18 19 public ParsingException(String message) { 20 super(message); 21 } 22 23 public ParsingException(String message, Throwable cause) { 24 super(message, cause); 25 } 26 27 public ParsingException(Throwable cause) { 28 super(cause); 29 } 30 }