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

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

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

/**
 * Base class of other hive exceptions.
 * Most of the sub-classes is the wrapper of the error comes from the backend APIs.
 */
public class HiveException extends Exception {
	private static final long serialVersionUID = 1L;
	
	public HiveException() {
		super();
	}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy