1 /* 2 * PropertyListenerException.java 3 * Created on 19 Май 2006 г., 16:14 4 */ 5 6 package org.weda.property; 7 8 /** 9 * 10 * @author Mikhail Titov 11 */ 12 public class PropertyListenerException extends java.lang.Exception { 13 14 public PropertyListenerException(String msg) { 15 super(msg); 16 } 17 18 public PropertyListenerException(String msg, Throwable cause) { 19 super(msg, cause); 20 } 21 22 }