1
2 package jsdsi.sexp;
3
4 /***
5 * This exception is used to signify an error when parsing an input
6 * stream into a <code>Sexp</code>. It indicates that there is some error and
7 * the bytes in the input stream do not correctly represent an S-Expression.
8 *
9 * @author Sameer Ajmani
10 * @version $Revision: 1.2.2.1 $ $Date: 2005/11/08 03:12:52 $
11 */
12 public class SexpException extends Exception {
13
14 private static final long serialVersionUID = 5905798305971255597L;
15
16 public SexpException() {
17 super();
18 }
19 public SexpException(String s) {
20 super(s);
21 }
22 }
This page was automatically generated by Maven