Manage your torrents from your Android device
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
405 B

package org.transdroid.connect.clients
/**
* Thrown when trying to call into a client method for a feature which the client does not support.
*/
class UnsupportedFeatureException internal constructor(
private val client: Client,
private val feature: Feature) : RuntimeException() {
override val message: String?
get() = client.name + " does not support " + feature.name
}