mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-28 21:00:14 +02:00
10 lines
286 B
Kotlin
10 lines
286 B
Kotlin
package app.revanced.patcher.patch
|
|
|
|
/**
|
|
* A result of executing a [Patch].
|
|
*
|
|
* @param patch The [Patch] that was executed.
|
|
* @param exception The [PatchException] thrown, if any.
|
|
*/
|
|
class PatchResult internal constructor(val patch: Patch<*>, val exception: PatchException? = null)
|