UnsupportedMethodException

open class UnsupportedMethodException : UnsupportedOperationException

Thrown when the tooling API client attempts to use a method that does not exist in the version of Gradle that the tooling API is connected to.

Typically, to resolve such a problem you change/upgrade the target version of Gradle that the tooling API is connected to. Alternatively, you can handle and ignore this exception.

Since

1.0-milestone-8

Constructors

Link copied to clipboard
constructor(s: String)
constructor(message: String, cause: Throwable)

Properties

Link copied to clipboard
open val cause: Throwable
Link copied to clipboard
open var stackTrace: Array<StackTraceElement>

Functions

Link copied to clipboard
fun addSuppressed(p: Throwable)
Link copied to clipboard
open fun fillInStackTrace(): Throwable
Link copied to clipboard
open fun getLocalizedMessage(): String
Link copied to clipboard
open fun getMessage(): String
Link copied to clipboard
fun getSuppressed(): Array<Throwable>
Link copied to clipboard
open fun initCause(p: Throwable): Throwable
Link copied to clipboard
open fun printStackTrace()
Link copied to clipboard
open fun toString(): String