gov.loc.repository.bagit.exceptions.InvalidBagMetadataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagit Show documentation
Show all versions of bagit Show documentation
The BAGIT LIBRARY is a software library intended to support the creation, manipulation, and validation of bags. Its current version is 0.97. It is version aware with the earliest supported version being 0.93.
The newest version!
package gov.loc.repository.bagit.exceptions;
/**
* Class to represent an error when the bag metadata file does not conform to the bagit spec,
* namely:
* <KEY>:<VALUE>
*
or
* <KEY>:<VALUE>
* <VALUE CONTINUED>
*/
public class InvalidBagMetadataException extends InvalidBagitFileFormatException {
private static final long serialVersionUID = 1L;
public InvalidBagMetadataException(final String message){
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy