3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 15:22:16 +00:00

Remove unused CouldNotAdjustDownwards. Move JavaDoc to the real one.

This commit is contained in:
Andreas Schildbach 2014-06-06 16:37:34 +02:00 committed by Mike Hearn
parent fb4aab3edc
commit fc923f8473
2 changed files with 5 additions and 11 deletions

View File

@ -40,15 +40,4 @@ public class InsufficientMoneyException extends Exception {
super(message);
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();
}
}
}

View File

@ -2364,6 +2364,11 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
public static class CompletionException extends RuntimeException {}
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 ExceededMaxTransactionSize extends CompletionException {}