com.github.keub.maven.plugin.exception.InvalidSourceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote-resources-maven-plugin Show documentation
Show all versions of remote-resources-maven-plugin Show documentation
Copy files from a remote location to a path relative to the project in which the plugin is configured.
package com.github.keub.maven.plugin.exception;
/**
*
* Exception possibly raised during operations on a resource, if the defined
* source does not exist or is malformed
*
*
*/
public class InvalidSourceException extends Exception {
private static final long serialVersionUID = 83300648057703931L;
public InvalidSourceException() {
super();
}
public InvalidSourceException(String message, Throwable cause) {
super(message, cause);
}
public InvalidSourceException(String message) {
super(message);
}
public InvalidSourceException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy