| 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 | package com.drew.metadata.exif;
|
|---|
| 20 |
|
|---|
| 21 | import com.drew.metadata.MetadataException;
|
|---|
| 22 |
|
|---|
| 23 | /**
|
|---|
| 24 | * The exception type raised during reading of Exif data in the instance of
|
|---|
| 25 | * unexpected data conditions.
|
|---|
| 26 | * @author Drew Noakes http://drewnoakes.com
|
|---|
| 27 | */
|
|---|
| 28 | public class ExifProcessingException extends MetadataException
|
|---|
| 29 | {
|
|---|
| 30 | /**
|
|---|
| 31 | * Constructs an instance of <code>ExifProcessingException</code> with the
|
|---|
| 32 | * specified detail message.
|
|---|
| 33 | * @param message the detail message
|
|---|
| 34 | */
|
|---|
| 35 | public ExifProcessingException(String message)
|
|---|
| 36 | {
|
|---|
| 37 | super(message);
|
|---|
| 38 | }
|
|---|
| 39 |
|
|---|
| 40 | /**
|
|---|
| 41 | * Constructs an instance of <code>ExifProcessingException</code> with the
|
|---|
| 42 | * specified detail message and inner exception.
|
|---|
| 43 | * @param message the detail message
|
|---|
| 44 | * @param cause an inner exception
|
|---|
| 45 | */
|
|---|
| 46 | public ExifProcessingException(String message, Throwable cause)
|
|---|
| 47 | {
|
|---|
| 48 | super(message, cause);
|
|---|
| 49 | }
|
|---|
| 50 | }
|
|---|