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

com.googlecode.download.maven.plugin.internal.cache.IncompatibleIndexException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.9.0
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy