01: package com.etymon.pj.exception;
02:
03: /**
04: An exception that gets thrown when the parser encounters invalid
05: data while trying to read the xref table.
06: @author Nassib Nassar
07: */
08: public class XrefFormatException extends PjException {
09:
10: /**
11: Creates an XrefFormatException with a detailed message.
12: @param s the detailed message.
13: */
14: public XrefFormatException(String s) {
15: super(s);
16: }
17:
18: }
|