View Javadoc
1   package net.logAnalyzer.patternParser;
2   
3   /***
4    * Exception thrown from pattern parsing methods.
5    * 
6    * @author Karim REFEYTON
7    * @version 0.1
8    */
9   public class PatternParsingException extends Exception {
10      private static final long serialVersionUID = 1L;
11  
12      public PatternParsingException() {
13          super("Can't parse pattern.");
14      }
15  
16      public PatternParsingException(String message) {
17          super(message);
18      }
19  
20      public PatternParsingException(String message, Throwable cause) {
21          super(message, cause);
22      }
23  
24      public PatternParsingException(Throwable cause) {
25          super(cause);
26      }
27  
28  }