com.testvagrant.optimus.core.exceptions.TestFeedNotFoundException 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;
import org.apache.commons.lang3.StringUtils;
public class TestFeedNotFoundException extends RuntimeException {
public TestFeedNotFoundException(String path, String[] paths) {
super(
String.format(
"TestFeed %s not found in any of these paths:\n %s",
path, StringUtils.join(paths, "\n")));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy