001    package org.cumulus4j.store;
002    
003    /**
004     * @author Marco หงุ่ยตระกูล-Schulze - marco at nightlabs dot de (added javadoc)
005     */
006    public class UnsupportedDataTypeException extends RuntimeException {
007            private static final long serialVersionUID = 1L;
008    
009            public UnsupportedDataTypeException() { }
010    
011            public UnsupportedDataTypeException(String message) {
012                    super(message);
013            }
014    
015            public UnsupportedDataTypeException(Throwable cause) {
016                    super(cause);
017            }
018    
019            public UnsupportedDataTypeException(String message, Throwable cause) {
020                    super(message, cause);
021            }
022    }