com.github.jscancella.exceptions.InvalidBagStateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagging Show documentation
Show all versions of bagging Show documentation
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.
package com.github.jscancella.exceptions;
/**
* For when a bag has somehow been created and is in a undefined state
*/
public class InvalidBagStateException extends RuntimeException{
private static final long serialVersionUID = 1L;
/**
* For when a bag has somehow been created and is in a undefined state
*
* @param message error message for user
*/
public InvalidBagStateException(final String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy