source: gs3-extensions/atea-nlp-tools/trunk/src/ocr/src/main/java/org/atea/nlptools/ocr/Exceptions/LeptonicaException.java@ 35733

Last change on this file since 35733 was 35733, checked in by cstephen, 2 years ago

Add OCR servlet

File size: 413 bytes
Line 
1package org.atea.nlptools.ocr.Exceptions;
2
3/**
4 * Represents an error that occured while interacting with the Leptonica library.
5 */
6public class LeptonicaException extends Exception
7{
8 /**
9 * Initializes a new instance of the {@link LeptonicaException} class.
10 * @param message A message detailing the exception.
11 */
12 public LeptonicaException(String message) {
13 super(message);
14 }
15}
Note: See TracBrowser for help on using the repository browser.