1 /*
2 * PropertyDescriptorException.java
3 * Created on 6 Июнь 2006 г., 23:27
4 */
5
6 package org.weda.property;
7
8 /**
9 * @author Mikhail Titov
10 */
11 public class PropertyDescriptorException extends java.lang.Exception {
12
13 public PropertyDescriptorException(String msg) {
14 super(msg);
15 }
16 }