001    package railo.commons.io;
002    
003    /**Exception that will be throwed when a serial number is invalid.
004     * 
005     */
006    public final class InvalidSerialException extends Exception {
007    
008        /**
009         * Default Constructor
010         */
011        public InvalidSerialException() {
012            super("serial number is invalid");
013        }
014    }