View Javadoc

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