KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > etymon > pjx > stream > PdfDecoderNotSupportedException


1 /*
2   Copyright (C) Etymon Systems, Inc. <http://www.etymon.com/>
3 */

4
5 package com.etymon.pjx.stream;
6
7 import com.etymon.pjx.*;
8
9 /**
10    Thrown if stream decoding requires a decoder method that is not
11    supported by this package.
12    @author Nassib Nassar
13 */

14 public class PdfDecoderNotSupportedException
15     extends PdfDecoderException {
16     
17     /**
18        Creates an instance of this exception with a detailed
19        message.
20        @param s the detailed message.
21     */

22     public PdfDecoderNotSupportedException(String JavaDoc s) {
23         super(s);
24     }
25     
26     /**
27        Creates an instance of this exception with a detailed
28        message and offset. A detailed message is a String that
29        describes this particular exception.
30        @param s the detailed message.
31        @param errorOffset the position where the error is found
32        while parsing.
33     */

34     public PdfDecoderNotSupportedException(String JavaDoc s, long errorOffset) {
35         super(s, errorOffset);
36     }
37
38 }
39
Popular Tags