mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-12 10:15:52 +00:00
Remove unused CouldNotAdjustDownwards. Move JavaDoc to the real one.
This commit is contained in:
parent
fb4aab3edc
commit
fc923f8473
@ -40,15 +40,4 @@ public class InsufficientMoneyException extends Exception {
|
|||||||
super(message);
|
super(message);
|
||||||
this.missing = checkNotNull(missing);
|
this.missing = checkNotNull(missing);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Thrown when we were trying to empty the wallet, and the total amount of money we were trying to empty after
|
|
||||||
* being reduced for the fee was smaller than the min payment. Note that the missing field will be null in this
|
|
||||||
* case.
|
|
||||||
*/
|
|
||||||
public static class CouldNotAdjustDownwards extends InsufficientMoneyException {
|
|
||||||
public CouldNotAdjustDownwards() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2364,6 +2364,11 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
|||||||
|
|
||||||
public static class CompletionException extends RuntimeException {}
|
public static class CompletionException extends RuntimeException {}
|
||||||
public static class DustySendRequested extends CompletionException {}
|
public static class DustySendRequested extends CompletionException {}
|
||||||
|
/**
|
||||||
|
* Thrown when we were trying to empty the wallet, and the total amount of money we were trying to empty after
|
||||||
|
* being reduced for the fee was smaller than the min payment. Note that the missing field will be null in this
|
||||||
|
* case.
|
||||||
|
*/
|
||||||
public static class CouldNotAdjustDownwards extends CompletionException {}
|
public static class CouldNotAdjustDownwards extends CompletionException {}
|
||||||
public static class ExceededMaxTransactionSize extends CompletionException {}
|
public static class ExceededMaxTransactionSize extends CompletionException {}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user