All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.keub.maven.plugin.exception.ProtocolException Maven / Gradle / Ivy

Go to download

Copy files from a remote location to a path relative to the project in which the plugin is configured.

There is a newer version: 1.8
Show newest version
package com.github.keub.maven.plugin.exception;

/**
 * 

* Exception thrown if the protocol to implement is not found *

* */ public class ProtocolException extends Exception { private static final long serialVersionUID = 83300648057703931L; public ProtocolException() { super(); } public ProtocolException(String message, Throwable cause) { super(message, cause); } public ProtocolException(String message) { super(message); } public ProtocolException(Throwable cause) { super(cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy