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

com.github.ltsopensource.store.jdbc.StateException Maven / Gradle / Ivy

package com.github.ltsopensource.store.jdbc;

/**
 * @author Robert HG ([email protected]) on 5/20/15.
 */
public class StateException extends RuntimeException {

	private static final long serialVersionUID = -1431221683278943387L;

	public StateException() {
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy