rename classes and executables from Bisq* to Haveno*

This commit is contained in:
woodser 2021-12-15 12:38:41 -05:00
parent 7c9c35b1b8
commit 1be8e53ee9
72 changed files with 235 additions and 234 deletions

View file

@ -17,17 +17,17 @@
package bisq.common;
public class BisqException extends RuntimeException {
public class HavenoException extends RuntimeException {
public BisqException(Throwable cause) {
public HavenoException(Throwable cause) {
super(cause);
}
public BisqException(String format, Object... args) {
public HavenoException(String format, Object... args) {
super(String.format(format, args));
}
public BisqException(Throwable cause, String format, Object... args) {
public HavenoException(Throwable cause, String format, Object... args) {
super(String.format(format, args), cause);
}
}

View file

@ -1,8 +1,8 @@
package bisq.common.config;
import bisq.common.BisqException;
import bisq.common.HavenoException;
public class ConfigException extends BisqException {
public class ConfigException extends HavenoException {
public ConfigException(String format, Object... args) {
super(format, args);

View file

@ -25,13 +25,13 @@ import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class BisqHelpFormatter implements HelpFormatter {
public class HavenoHelpFormatter implements HelpFormatter {
private final String fullName;
private final String scriptName;
private final String version;
public BisqHelpFormatter(String fullName, String scriptName, String version) {
public HavenoHelpFormatter(String fullName, String scriptName, String version) {
this.fullName = fullName;
this.scriptName = scriptName;
this.version = version;