IceGrid.UserAccountNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icegrid-compat Show documentation
Show all versions of icegrid-compat Show documentation
Locate, deploy, and manage Ice servers
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `UserAccountMapper.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
/**
* This exception is raised if a user account for a given session
* identifier can't be found.
*
**/
public class UserAccountNotFoundException extends Ice.UserException
{
public UserAccountNotFoundException()
{
}
public UserAccountNotFoundException(Throwable cause)
{
super(cause);
}
public String
ice_id()
{
return "::IceGrid::UserAccountNotFoundException";
}
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceGrid::UserAccountNotFoundException", -1, true);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
istr_.endSlice();
}
public static final long serialVersionUID = -1502480029411462668L;
}