KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > etymon > pj > exception > StartxrefFormatException


1 package com.etymon.pj.exception;
2
3 /**
4    An exception that gets thrown when the parser encounters invalid
5    data while trying to read the startxref.
6    @author Nassib Nassar
7 */

8 public class StartxrefFormatException
9     extends PjException {
10
11     /**
12        Creates a StartxrefFormatException with a detailed message.
13        @param s the detailed message.
14     */

15     public StartxrefFormatException(String JavaDoc s) {
16         super(s);
17     }
18
19 }
20
Popular Tags