1 package org.bitbucket.jrsofty.parser.logging.util; 2 3 /** 4 * The exception thrown when the log line format cannot be created. 5 * 6 * @author jrsofty 7 * 8 */ 9 public class LogLineFormatException extends Exception { 10 11 private static final long serialVersionUID = -4859362642008304906L; 12 13 public LogLineFormatException(final String msg) { 14 super(msg); 15 } 16 17 }