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

uk.ac.shef.dcs.sti.STIException Maven / Gradle / Ivy

The newest version!
package uk.ac.shef.dcs.sti;

/**
 * Author: Ziqi Zhang ([email protected])
 * Date: 22/10/12
 * Time: 12:42
 */
public class STIException extends Exception {
    public STIException(String s, Exception e) {
        super(s, e);
    }

    public STIException(String s) {
        super(s);
    }

    public STIException(Exception e){
        super(e);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy