com.googlecode.download.maven.plugin.internal.cache.IncompatibleIndexException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of download-maven-plugin Show documentation
Show all versions of download-maven-plugin Show documentation
This is a plugin meant to help maven user to download
different files on different protocol in part of maven build. For the
first implementation, there will only be a goal that will help
downloading a maven artifact from the command line. Future version of
the plugin could include web download, ftp download, scp download and
so on.
package com.googlecode.download.maven.plugin.internal.cache;
/**
* Thrown when {@link DownloadCache} fails to read an existing index.
*
* This occurs when upgrading to a new version of the plugin with breaking changes in the index storage strategy
* (including Java serialization changes, or even moving to a different serialization mechanism (JSON, XML, etc.).
*/
class IncompatibleIndexException extends RuntimeException {
IncompatibleIndexException(Exception cause) {
super(cause);
}
}