001    package nl.cwi.sen1.visbase.rstorecontainer.datatypes;
002    
003    /**
004     * Generic Exception for errors during parsing of ATerm data
005     * 
006     * @author Ricardo Lindooren
007     * @date 2007-02-14
008     * 
009     */
010    public class ATermParseException extends Exception
011    {
012    
013        /**
014         * 
015         */
016        private static final long serialVersionUID = 1L;
017    
018        public ATermParseException()
019        {
020            super();
021        }
022    
023        public ATermParseException(String message)
024        {
025            super(message);
026        }
027    
028        public ATermParseException(String message, Throwable cause)
029        {
030            super(message, cause);
031        }
032    
033        public ATermParseException(Throwable cause)
034        {
035            super(cause);
036        }
037    }