001    package nl.cwi.sen1.visbase.rstorecontainer;
002    
003    /**
004     * @author Ricardo Lindooren
005     * @author Arend van Beelen (reviewer)
006     * @date 2007-02-14
007     */
008    public class RStoreParseException extends Exception {
009    
010        private static final long serialVersionUID = 1L;
011    
012        public RStoreParseException() {
013            super();
014        }
015    
016        public RStoreParseException(String message) {
017            super(message);
018        }
019    
020        public RStoreParseException(String message, Throwable cause) {
021            super(message, cause);
022        }
023    
024        public RStoreParseException(Throwable cause) {
025            super(cause);
026        }
027    }