]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/drew/jpeg/JpegException.java
Version 9, February 2010
[GpsPrune.git] / tim / prune / drew / jpeg / JpegException.java
1 package tim.prune.drew.jpeg;
2
3 /**
4  * Class to indicate a fatal exception processing a jpeg,
5  * including IO errors and exif errors
6  */
7 public class JpegException extends Exception
8 {
9         /**
10          * @param message description of error
11          */
12         public JpegException(String message)
13         {
14                 super(message);
15         }
16
17         /**
18          * @param message description of error
19          * @param cause Throwable which caused the error
20          */
21         public JpegException(String message, Throwable cause)
22         {
23                 super(message, cause);
24         }
25 }