Packages

package exceptions

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. 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

  2. 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

  3. 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.

  4. case class FridaDied() extends Throwable with Product with Serializable

    condition that is thrown if frida instance died or could not be started

  5. 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

  6. 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

  7. 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

  1. 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

Ungrouped