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

gov.loc.repository.bagit.exceptions.PayloadOxumDoesNotExistException Maven / Gradle / Ivy

Go to download

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;

import gov.loc.repository.bagit.domain.Bag;

/**
 * The {@link Bag} object should contain the Payload-Oxum metatdata key value pair, 
 * this class represents the error when trying to calculate the payload-oxum and it doesn't exist on the bag object.
 */
public class PayloadOxumDoesNotExistException extends RuntimeException {
  private static final long serialVersionUID = 1L;

  public PayloadOxumDoesNotExistException(final String message){
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy