1 package net.logAnalyzer.handlers;
2
3 /***
4 * Exception thrown by a {@link net.logAnalyzer.handlers.LALogHandler} when no
5 * converter is set.
6 *
7 * @author Karim REFEYTON
8 * @version 0.1
9 */
10 public class NoConverterException extends Exception {
11 private static final long serialVersionUID = 1L;
12
13 public NoConverterException() {
14 super("Please, set one converter or more.");
15 }
16
17 public NoConverterException(String message) {
18 super(message);
19 }
20
21 public NoConverterException(String message, Throwable cause) {
22 super(message, cause);
23 }
24
25 public NoConverterException(Throwable cause) {
26 super(cause);
27 }
28
29 }