diff options
| author | pdanner <pdanner@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2010-11-26 12:02:47 +0000 | 
|---|---|---|
| committer | pdanner <pdanner@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2010-11-26 12:02:47 +0000 | 
| commit | 06b900642342afb680aab3b36fba9247e1e29aa9 (patch) | |
| tree | b4d34d008b7d736c034caa81614a448c31af8fca /src/main/java/at/gv/egiz/pdfas/exceptions/framework | |
| parent | 1b337e50a9edb280aea49879f901613e1fe17b55 (diff) | |
| download | pdf-as-3-06b900642342afb680aab3b36fba9247e1e29aa9.tar.gz pdf-as-3-06b900642342afb680aab3b36fba9247e1e29aa9.tar.bz2 pdf-as-3-06b900642342afb680aab3b36fba9247e1e29aa9.zip | |
Placeholder-image handling
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@613 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'src/main/java/at/gv/egiz/pdfas/exceptions/framework')
| -rw-r--r-- | src/main/java/at/gv/egiz/pdfas/exceptions/framework/PlaceholderExtractionException.java | 56 | 
1 files changed, 56 insertions, 0 deletions
| diff --git a/src/main/java/at/gv/egiz/pdfas/exceptions/framework/PlaceholderExtractionException.java b/src/main/java/at/gv/egiz/pdfas/exceptions/framework/PlaceholderExtractionException.java new file mode 100644 index 0000000..93eda36 --- /dev/null +++ b/src/main/java/at/gv/egiz/pdfas/exceptions/framework/PlaceholderExtractionException.java @@ -0,0 +1,56 @@ +package at.gv.egiz.pdfas.exceptions.framework;
 +
 +import at.gv.egiz.pdfas.exceptions.ErrorCode;
 +import at.knowcenter.wag.egov.egiz.exceptions.PresentableException;
 +
 +/**
 + * Exceptions thrown if STRICT matching mode for placeholder extraction is set and no placeholder could be found.
 + * 
 + * @author exthex
 + * 
 + */
 +public class PlaceholderExtractionException extends PresentableException
 +{
 +  private static final long serialVersionUID = 0L;
 + 
 +  /**
 +   * Constructor.
 +   * 
 +   * @param errorCode the error code
 +   * @param message the additional message
 +   * @param cause the causing exception
 +   * 
 +   * @see ErrorCode#SIGNATURE_PLACEHOLDER_EXTRACTION_FAILED
 +   */
 +  public PlaceholderExtractionException(int errorCode, String message, Throwable cause)
 +  {
 +    super(errorCode, message, cause);
 +  }
 +
 +  /**
 +   * Constructor.
 +   * 
 +   * @param errorCode the error code
 +   * @param message the additional message
 +   * 
 +   * @see ErrorCode#SIGNATURE_PLACEHOLDER_EXTRACTION_FAILED
 +   */
 +  public PlaceholderExtractionException(int errorCode, String message)
 +  {
 +    super(errorCode, message);
 +  }
 +
 +  /**
 +   * Constructor.
 +   * 
 +   * @param errorCode the error code
 +   * @param cause the causing exception
 +   * 
 +   * @see ErrorCode#SIGNATURE_PLACEHOLDER_EXTRACTION_FAILED
 +   */
 +  public PlaceholderExtractionException(int errorCode, Throwable cause)
 +  {
 +    super(errorCode, cause);
 +  }
 +
 +}
 | 
