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

com.linuxense.javadbf.DBFFieldNotFoundException Maven / Gradle / Ivy

package com.linuxense.javadbf;

public class DBFFieldNotFoundException extends DBFException {

	private static final long serialVersionUID = -6346458838529022854L;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy