Source code: com/drew/metadata/exif/ExifProcessingException.java
1 /*
2 * ExifProcessingException.java
3 *
4 * This class is public domain software - that is, you can do whatever you want
5 * with it, and include it software that is licensed under the GNU or the
6 * BSD license, or whatever other licence you choose, including proprietary
7 * closed source licenses. I do ask that you leave this header in tact.
8 *
9 * If you make modifications to this code that you think would benefit the
10 * wider community, please send me a copy and I'll post it on my site.
11 *
12 * If you make use of this code, I'd appreciate hearing about it.
13 * drew@drewnoakes.com
14 * Latest version of this software kept at
15 * http://drewnoakes.com/
16 *
17 * Created on 29 April 2002, 00:33
18 */
19
20 package com.drew.metadata.exif;
21
22 import com.drew.metadata.MetadataException;
23
24 /**
25 * The exception type raised during reading of Exif data in the instance of
26 * unexpected data conditions.
27 * @author Drew Noakes http://drewnoakes.com
28 */
29 public class ExifProcessingException extends MetadataException
30 {
31 /**
32 * Constructs an instance of <code>ExifProcessingException</code> with the
33 * specified detail message.
34 * @param message the detail message
35 */
36 public ExifProcessingException(String message)
37 {
38 super(message);
39 }
40
41 /**
42 * Constructs an instance of <code>ExifProcessingException</code> with the
43 * specified detail message and inner exception.
44 * @param message the detail message
45 * @param cause an inner exception
46 */
47 public ExifProcessingException(String message, Throwable cause)
48 {
49 super(message, cause);
50 }
51 }