package gov.loc.repository.bagit.exceptions; /** * Class to represent an error when the bag metadata file does not conform to the bagit spec, * namely: <br> * <KEY>:<VALUE> * <br>or * <pre><KEY>:<VALUE> * <VALUE CONTINUED></pre> */ public class InvalidBagMetadataException extends InvalidBagitFileFormatException { private static final long serialVersionUID = 1L; public InvalidBagMetadataException(final String message){ super(message); } }