mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-10 18:45:09 -04:00
rename classes and executables from Bisq* to Haveno*
This commit is contained in:
parent
7c9c35b1b8
commit
1be8e53ee9
72 changed files with 235 additions and 234 deletions
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue