All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mysema.query.apt.APTException Maven / Gradle / Ivy

There is a newer version: 3.7.4
Show newest version
/*
 * 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