com.zeroc.Ice.ConnectionTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice Show documentation
Show all versions of ice Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `LocalException.ice'
//
// Warning: do not edit this file.
//
//
//
package com.zeroc.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";
}
/** @hidden */
public static final long serialVersionUID = 1630370601897802194L;
}