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

com.github.sarxos.xchange.ExchangeException Maven / Gradle / Ivy

package com.github.sarxos.xchange;

public class ExchangeException extends Exception {

	private static final long serialVersionUID = 1L;

	public ExchangeException() {
		super();
	}

	public ExchangeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy