]> rtime.felk.cvut.cz Git - hornmich/skoda-qr-demo.git/blob - QRScanner/mobile/src/main/java/cz/cvut/fel/dce/qrscanner/pdfviewer/PdfViewerException.java
Clean and coment the code.
[hornmich/skoda-qr-demo.git] / QRScanner / mobile / src / main / java / cz / cvut / fel / dce / qrscanner / pdfviewer / PdfViewerException.java
1 package cz.cvut.fel.dce.qrscanner.pdfviewer;
2
3 /**
4  * Custom Viewer exception class
5  *
6  * Instances of this Exception class are thrown by the PdfPageView widget.
7  */
8 public class PdfViewerException extends Exception {
9         PdfViewerException(String s){
10                 super(s);
11         }
12 }