name.remal.gradle_plugins.toolkit.PathIsOutOfRootPathException Maven / Gradle / Ivy
package name.remal.gradle_plugins.toolkit;
import static java.lang.String.format;
import java.nio.file.Path;
public class PathIsOutOfRootPathException extends RuntimeException {
PathIsOutOfRootPathException(Path path, Path rootPath) {
super(format(
"Path is outside of root path (%s): %s",
rootPath,
path
));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy