Glacier2.SessionNotExistException Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Router.ice'
//
// Warning: do not edit this file.
//
//
//
package Glacier2;
/**
* This exception is raised if a client tries to destroy a session
* with a router, but no session exists for the client.
*
* @see Router#destroySession
*
**/
public class SessionNotExistException extends Ice.UserException
{
public SessionNotExistException()
{
}
public SessionNotExistException(Throwable cause)
{
super(cause);
}
public String
ice_id()
{
return "::Glacier2::SessionNotExistException";
}
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::Glacier2::SessionNotExistException", -1, true);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
istr_.endSlice();
}
public static final long serialVersionUID = 6249917280838900973L;
}