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