mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-15 21:08:19 +08:00
29 lines
503 B
Java
29 lines
503 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);
|
|
}
|
|
|
|
}
|