PdfDecoderException.java :  » PDF » pjx » com » etymon » pjx » stream » Java Open Source

Java Open Source » PDF » pjx 
pjx » com » etymon » pjx » stream » PdfDecoderException.java
/*
  Copyright (C) Etymon Systems, Inc. <http://www.etymon.com/>
*/

package com.etymon.pjx.stream;

import com.etymon.pjx.*;

/**
   Thrown if there is a problem related to PDF stream encoding or
   decoding.
   @author Nassib Nassar
*/
public class PdfDecoderException
  extends PdfException {
  
  /**
     Creates an instance of this exception with a detailed
     message.
     @param s the detailed message.
  */
  public PdfDecoderException(String s) {
    super(s);
  }
  
  /**
     Creates an instance of this exception with a detailed
     message and offset.  A detailed message is a String that
     describes this particular exception.
     @param s the detailed message.
     @param errorOffset the position where the error is found
     while parsing.
  */
  public PdfDecoderException(String s, long errorOffset) {
    super(s, errorOffset);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.