com.airbnb.epoxy.processor.EpoxyProcessorException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epoxy-processor Show documentation
Show all versions of epoxy-processor Show documentation
Epoxy is a system for composing complex screens with a ReyclerView in Android.
The newest version!
package com.airbnb.epoxy.processor
import androidx.room.compiler.processing.XElement
internal class EpoxyProcessorException(
message: String,
cause: Throwable? = null,
val element: XElement? = null
) : RuntimeException(message, cause)