001 package sexp; 002 003 /** 004 * SExpParseException represents an exception caused by trying to parse a malformed 005 * string as an s-expression. 006 */ 007 public class SExpParseException extends Exception { 008 private static final long serialVersionUID = 1L; 009 010 public SExpParseException() { 011 } 012 013 public SExpParseException(String msg) { 014 super(msg); 015 } 016 017 public SExpParseException(Exception e) { 018 super(e); 019 } 020 }