View Javadoc

1   /*
2    * Copyright (C) The Apache Software Foundation. All rights reserved.
3    *
4    * This software is published under the terms of the Apache Software
5    * License version 1.1, a copy of which has been included with this
6    * distribution in the LICENSE.txt file.  */
7   
8   package ch.qos.logback.core.util;
9   
10  import ch.qos.logback.core.joran.spi.PropertySetter;
11  
12  /**
13   * Thrown when an error is encountered whilst attempting to set a property
14   * using the {@link PropertySetter} utility class.
15   * 
16   * @author Anders Kristensen
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  }