Ice.ConnectionTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
The newest version!
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.10
//
//
//
// Generated from file `LocalException.ice'
//
// Warning: do not edit this file.
//
//
//
package Ice;
/**
* This exception indicates that a connection has been shut down because it has been
* idle for some time.
*
**/
public class ConnectionTimeoutException extends TimeoutException
{
public ConnectionTimeoutException()
{
super();
}
public ConnectionTimeoutException(Throwable cause)
{
super(cause);
}
public String
ice_id()
{
return "::Ice::ConnectionTimeoutException";
}
public static final long serialVersionUID = 1630370601897802194L;
}