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

mx.bigdata.sat.exceptions.KeyException Maven / Gradle / Ivy

The newest version!
package mx.bigdata.sat.exceptions;

/**
 * Created with IntelliJ IDEA.
 * User: Gerardo Aquino
 * Date: 3/06/13
 */
public class KeyException extends RuntimeException {

    public KeyException() {
        super();
    }

    public KeyException(String message) {
        super(message);
    }

    public KeyException(String message, Throwable cause) {
        super(message, cause);
    }

    public KeyException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy