W3cubDocs

/Kotlin

IllegalPropertyDelegateAccessException

class IllegalPropertyDelegateAccessException

Platform and version requirements: Kotlin 1.1, JVM

An exception that is thrown when getDelegate is invoked on a KProperty object that was not made accessible with isAccessible.

See Also

kotlin.reflect.KProperty0.getDelegate

kotlin.reflect.KProperty1.getDelegate

kotlin.reflect.KProperty2.getDelegate

kotlin.reflect.jvm.isAccessible

Constructors

<init>

IllegalPropertyDelegateAccessException(
    cause: IllegalAccessException)

An exception that is thrown when getDelegate is invoked on a KProperty object that was not made accessible with isAccessible.

Inherited Functions

equals

open operator fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements:

hashCode

open fun hashCode(): Int

Returns a hash code value for the object. The general contract of hashCode is:

toString

open fun toString(): String

Returns a string representation of the object.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect.full/-illegal-property-delegate-access-exception/