org.jruby.rack.AcquireTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jruby-rack Show documentation
Show all versions of jruby-rack Show documentation
A servlet bridge for (Ruby-based) Rack applications that allow them
to run in Java Application servers using JRuby.
/*
* This source code is available under the MIT license.
* See the file LICENSE.txt for details.
*/
package org.jruby.rack;
/**
* @see PoolingRackApplicationFactory#getApplication()
*
* @author kares
*/
public class AcquireTimeoutException extends RackException {
public AcquireTimeoutException(String message) {
super(message);
}
public AcquireTimeoutException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy