Staging
v0.5.0
https://repo1.maven.org/maven2/org/pulloid/pulloid
Raw File
CursorException.java
package org.pulloid;

public class CursorException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public CursorException() {
		super();
	}

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

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

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

}
back to top