bt.BtException 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;
/**
* Generic Bt exception
*
* @since 1.0
*/
public class BtException extends RuntimeException {
/**
* @since 1.0
*/
public BtException(String message, Throwable cause) {
super(message, cause);
}
/**
* @since 1.0
*/
public BtException(String message) {
super(message);
}
}