com.testvagrant.optimus.core.exceptions.DeviceReleaseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-lite Show documentation
Show all versions of optimus-lite Show documentation
Optimus Lite API to manage test devices and create appium driver based on platform
package com.testvagrant.optimus.core.exceptions;
public class DeviceReleaseException extends RuntimeException {
public DeviceReleaseException(String udid, String message) {
super(String.format("Cannot release device with udid %s. \nError: %s", udid, message));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy