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

org.elastos.hive.exception.VaultNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.0.27-pre
Show newest version
package org.elastos.hive.exception;

public class VaultNotFoundException extends NotFoundException {
	private static final long serialVersionUID = -586039279266427101L;

	public VaultNotFoundException() {
		super();
	}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy