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

gu.sql2java.store.DataNotFoundException Maven / Gradle / Ivy

package gu.sql2java.store;

import java.io.IOException;
import java.net.URL;

/**
 * 没有发现指定的数据
 * @author guyadong
 *
 */
@SuppressWarnings("serial")
public class DataNotFoundException extends IOException {

	public DataNotFoundException() {
	}

	public DataNotFoundException(String message) {
		super(message);
	}
	public DataNotFoundException(URL url) {
		super(url == null ? "null" : url.toString());
	}

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

	public DataNotFoundException(String message, Throwable cause) {
		super(message, cause);
	}
	
	public DataNotFoundException(URL url, Throwable cause) {
		super(url == null ? "null" : url.toString(), cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy