Staging
v0.5.1
swh:1:snp:508923e52305fedd5556b26d8042e0ec70598cef
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