IceGrid.ObjectExistsException 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 `Exception.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
/**
* This exception is raised if an object already exists.
*
**/
public class ObjectExistsException extends Ice.UserException
{
public ObjectExistsException()
{
this.id = new Ice.Identity();
}
public ObjectExistsException(Throwable cause)
{
super(cause);
this.id = new Ice.Identity();
}
public ObjectExistsException(Ice.Identity id)
{
this.id = id;
}
public ObjectExistsException(Ice.Identity id, Throwable cause)
{
super(cause);
this.id = id;
}
public String
ice_id()
{
return "::IceGrid::ObjectExistsException";
}
/**
* The identity of the object.
*
**/
public Ice.Identity id;
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceGrid::ObjectExistsException", -1, true);
Ice.Identity.ice_write(ostr_, id);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
id = Ice.Identity.ice_read(istr_);
istr_.endSlice();
}
public static final long serialVersionUID = 288347894250970644L;
}