querydsl/querydsl-apt/src/main/java/com/mysema/query/apt/APTException.java
Timo Westkämper 212b3eceb4 cleaned code
2010-06-21 16:07:45 +00:00

29 lines
462 B
Java

/*
* Copyright (c) 2009 Mysema Ltd.
* All rights reserved.
*
*/
package com.mysema.query.apt;
/**
* @author tiwe
*
*/
public class APTException extends RuntimeException {
private static final long serialVersionUID = -8456970330509020462L;
public APTException(String msg){
super(msg);
}
public APTException(String msg, Throwable t){
super(msg, t);
}
public APTException(Throwable t){
super(t);
}
}