gsonpath.ProcessingException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gsonpath-compiler-base Show documentation
Show all versions of gsonpath-compiler-base Show documentation
An annotation processor which generates Type Adapters for the Google Gson library
package gsonpath
import javax.lang.model.element.Element
/**
* Represents that something has gone wrong during annotation processing.
*/
class ProcessingException(override val message: String, val element: Element? = null) : Exception(message)