package at.gv.egiz.pdfas.exceptions.pdf;

import at.gv.egiz.pdfas.exceptions.ErrorCode;
import at.knowcenter.wag.egov.egiz.exceptions.PresentableException;

public class TextExtractionException extends PresentableException
{
  /**
   * SVUID.
   */
  private static final long serialVersionUID = 2798763345488999563L;

  public TextExtractionException(Throwable cause)
  {
    super(ErrorCode.TEXT_EXTRACTION_EXCEPTION, cause);
  }

}