com.testvagrant.monitor.exceptions.DeviceReleaseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-cloud-monitor Show documentation
Show all versions of optimus-cloud-monitor Show documentation
The Java Client provides access to Optimus cloud for all java based projects.
The newest version!
package com.testvagrant.monitor.exceptions;
public class DeviceReleaseException extends Exception {
public DeviceReleaseException(String udid) {
super(String.format("Cannot release device with udid %s",udid));
}
}