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