001package io.konik.carriage.pdfbox.exception;
002
003/**
004 * Is thrown, when find out that the PDF is not of type PDF/A.
005 *
006 */
007public class NotPDFAException extends RuntimeException {
008
009   private static final long serialVersionUID = 6138692940701494870L;
010   
011   private final static String MSG = "The provided PDF is not of type PDF/A. Contact support for an additional PDF to PDF/A conversation";
012   /**
013    *  
014    */
015   public NotPDFAException() {
016      super(MSG);
017   }
018}