![JAR search and dependency download from the Maven repository](/logo.png)
bt.protocol.InvalidMessageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
package bt.protocol;
/**
* Generic exception, that indicates that a message is invalid.
* Usually thrown by message constructors.
*
* @since 1.0
*/
public class InvalidMessageException extends RuntimeException {
/**
* @since 1.0
*/
public InvalidMessageException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy