Package org.bitcoinj.base.exceptions
Class AddressFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- org.bitcoinj.base.exceptions.AddressFormatException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AddressFormatException.InvalidCharacter
,AddressFormatException.InvalidChecksum
,AddressFormatException.InvalidDataLength
,AddressFormatException.InvalidPrefix
,AddressFormatException.UnexpectedWitnessVersion
public class AddressFormatException extends java.lang.IllegalArgumentException
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AddressFormatException.InvalidCharacter
static class
AddressFormatException.InvalidChecksum
static class
AddressFormatException.InvalidDataLength
static class
AddressFormatException.InvalidPrefix
This exception is thrown by theEncodedPrivateKey
hierarchy of classes when you try and decode an address or private key with an invalid prefix (version header or human-readable part).static class
AddressFormatException.UnexpectedWitnessVersion
This exception is thrown bySegwitAddress
when you try to decode data and the witness version doesn't match the Bech32 encoding as per BIP350.static class
AddressFormatException.WrongNetwork
This exception is thrown by theEncodedPrivateKey
hierarchy of classes when you try and decode an address with a prefix (version header or human-readable part) that used by another network (usually: mainnet vs testnet).
-
Constructor Summary
Constructors Constructor Description AddressFormatException()
AddressFormatException(java.lang.String message)
-