001    package railo.runtime.gateway;
002    
003    import java.io.IOException;
004    
005    public class GatewayException extends IOException {
006            
007            private static final long serialVersionUID = -4271501962148246058L;
008    
009            /**
010             * Constructor of the class
011             * @param message
012             */
013            public GatewayException(String message){
014                    super(message);
015            }
016    }