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

com.github.jscancella.exceptions.InvalidBagMetadataException Maven / Gradle / Ivy

Go to download

This is a software library intended to support the creation, manipulation, and validation of "bags" from the bagit specification. It currently supports version 0.93 through 1.0.

There is a newer version: 5.2
Show newest version
package com.github.jscancella.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; /** * Class to represent an error when the bag metadata file does not conform to the bagit spec * * @param message error message for the user */ public InvalidBagMetadataException(final String message){ super(message); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy