mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-27 21:21:03 +00: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)
|