source: josm/trunk/src/com/drew/metadata/iptc/IptcProcessingException.java@ 4231

Last change on this file since 4231 was 4231, checked in by stoecker, 13 years ago

add signpost and metadata extractor code to repository directly

File size: 1.6 KB
Line 
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
20package com.drew.metadata.iptc;
21
22import com.drew.metadata.MetadataException;
23
24/**
25 * The exception type raised during reading of Iptc data in the instance of
26 * unexpected data conditions.
27 * @author Drew Noakes http://drewnoakes.com
28 */
29public class IptcProcessingException 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 IptcProcessingException(String message)
37 {
38 super(message);
39 }
40
41 /**
42 * Constructs an instance of <code>IptcProcessingException</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 IptcProcessingException(String message, Throwable cause)
48 {
49 super(message, cause);
50 }
51}
Note: See TracBrowser for help on using the repository browser.