Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/drew/imaging/jpeg/JpegProcessingException.java


1   /*
2    * JpegProcessingException.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 by dnoakes on 04-Nov-2002 19:31:29 using IntelliJ IDEA.
18   */
19  package com.drew.imaging.jpeg;
20  
21  import com.drew.lang.CompoundException;
22  
23  /**
24   * An exception class thrown upon unexpected and fatal conditions while processing
25   * a Jpeg file.
26   * @author  Drew Noakes http://drewnoakes.com
27   */
28  public class JpegProcessingException extends CompoundException
29  {
30      public JpegProcessingException(String message)
31      {
32          super(message);
33      }
34  
35      public JpegProcessingException(String message, Throwable cause)
36      {
37          super(message, cause);
38      }
39  
40      public JpegProcessingException(Throwable cause)
41      {
42          super(cause);
43      }
44  }