1 package org.weda.property;
2
3 /**
4 *
5 * @author tim
6 */
7 public class PropertyValueException extends Exception {
8
9 public PropertyValueException(String message, Throwable cause) {
10 super(message, cause);
11 }
12
13 }