package exceptions
- Alphabetic
- Public
- Protected
Type Members
- case class AppClosedItself(appId: String) extends Throwable with Product with Serializable
condition thrown if an app closed itself
condition thrown if an app closed itself
- appId
the id of app that did close itself
- case class AppRestartFailed(appId: String) extends Throwable with Product with Serializable
thrown if an app cannot be restarted
thrown if an app cannot be restarted
UNUSED
- appId
the appid of the app that cannot be restarted
- class FatalError extends Throwable
thrown if something fatal and unrecoverable happend
thrown if something fatal and unrecoverable happend
this condition MUST NOT BE SWALLOWED. At least rethrow it.
- case class FridaDied() extends Throwable with Product with Serializable
condition that is thrown if frida instance died or could not be started
- case class UnableToInstallApp(app: MobileApp, msg: String = "unexpected issue") extends Throwable with Product with Serializable
condition that an app cannot be installed
condition that an app cannot be installed
- app
the app that cannot be installed
- msg
any corresponding message
- case class UnableToStartApp(appId: String, msg: String = "unexpected issue") extends Throwable with Product with Serializable
exception when an app cannot be started
exception when an app cannot be started
- appId
the appid that cannot be started
- msg
any corresponding message
- case class UnableToUninstallApp(app: MobileApp, msg: String = "unexpected issue") extends Throwable with Product with Serializable
this error represents an issue uninstalling an app
this error represents an issue uninstalling an app
- app
the app that cannot be uninstalled
- msg
any corresponding custom message
Value Members
- object DeviceRestarted extends Throwable
condition that can be thrown if a device is restarted
condition that can be thrown if a device is restarted
CURRENTLY UNUSED