1
2
3
4
5
6
7
8 package ch.qos.logback.core.util;
9
10 import ch.qos.logback.core.joran.spi.PropertySetter;
11
12
13
14
15
16
17
18 public class PropertySetterException extends Exception {
19
20 private static final long serialVersionUID = -7524690541928503527L;
21
22 public PropertySetterException(String msg) {
23 super(msg);
24 }
25
26 public PropertySetterException(Throwable rootCause) {
27 super(rootCause);
28 }
29
30 public PropertySetterException(String message, Throwable cause) {
31 super(message, cause);
32 }
33 }