IceGrid.RegistryNotExistException 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 a registry does not exist.
*
**/
public class RegistryNotExistException extends Ice.UserException
{
public RegistryNotExistException()
{
this.name = "";
}
public RegistryNotExistException(Throwable cause)
{
super(cause);
this.name = "";
}
public RegistryNotExistException(String name)
{
this.name = name;
}
public RegistryNotExistException(String name, Throwable cause)
{
super(cause);
this.name = name;
}
public String
ice_id()
{
return "::IceGrid::RegistryNotExistException";
}
/**
* The registry name.
*
**/
public String name;
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceGrid::RegistryNotExistException", -1, true);
ostr_.writeString(name);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
name = istr_.readString();
istr_.endSlice();
}
public static final long serialVersionUID = -3485290212191100648L;
}