001    
002    package railo.runtime.converter;
003    
004    
005    /**
006     * Exception throwed by a Converter
007     */
008    public final class ConverterException extends Exception {
009    
010            private static final long serialVersionUID = -5591914619316366638L;
011    
012            /**
013             * constructor of the Exception
014             * @param message
015             */
016            public ConverterException(String message) {
017                    super(message);
018            }
019    }