com.mysema.query.apt.APTException Maven / Gradle / Ivy
/*
* 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy