name.remal.gradle_plugins.toolkit.PathIsOutOfRootPathException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolkit Show documentation
Show all versions of toolkit Show documentation
Remal Gradle plugins: toolkit: toolkit
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
));
}
}