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

edu.harvard.hul.ois.jhove.module.pdf.PdfMalformedException Maven / Gradle / Ivy

/**********************************************************************
 * Jhove - JSTOR/Harvard Object Validation Environment
 * Copyright 2004 by JSTOR and the President and Fellows of Harvard College
 **********************************************************************/

package edu.harvard.hul.ois.jhove.module.pdf;

import edu.harvard.hul.ois.jhove.RepInfo;
import edu.harvard.hul.ois.jhove.messages.JhoveMessage;

/**
 *  Exception subclass used internally by the PDF module.
 *  A PdfMalformedException is thrown when a condition indicates
 *  that the document is not well-formed.
 * 
 *  @see PdfInvalidException
 */
@SuppressWarnings("serial")
public class PdfMalformedException extends PdfException {

    /**
     *  Creates a PdfMalformedException.
     */
    public PdfMalformedException (final JhoveMessage message)
    {
        super(message);
    }


    /**
     *  Creates a PdfMalformedException with specified offset.
     */
    public PdfMalformedException (final JhoveMessage message, final long offset) 
    {
        super(message, offset);
    }


    /**
     *  Creates a PdfMalformedException with specified offset and token.
     */
    public PdfMalformedException (final JhoveMessage message, final long offset, final Token token) 
    {
        super(message, offset, token);
    }

    /**
     *  Performs the appropriate disparagement act on a RepInfo
     *  object.  For a PdfInvalidException, this is to call 
     *  setValid (false).
     */
    @Override
    public void disparage (final RepInfo info) 
    {
        info.setWellFormed (false);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy