1 /* 2 * ConstraintsFactoryException.java 3 * Created on 26 Июнь 2006 г., 18:19 4 */ 5 6 package org.weda.property; 7 8 /** 9 * @author tim 10 */ 11 public class ConstraintsFactoryException extends java.lang.Exception { 12 13 public ConstraintsFactoryException(String msg) { 14 super(msg); 15 } 16 public ConstraintsFactoryException(String msg, Throwable cause) { 17 super(msg, cause); 18 } 19 }