Ice.NotRegisteredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
The newest version!
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.10
//
//
//
// Generated from file `LocalException.ice'
//
// Warning: do not edit this file.
//
//
//
package Ice;
/**
* An attempt was made to find or deregister something that is not
* registered with the Ice run time or Ice locator.
*
* This exception is raised if an attempt is made to remove a servant,
* servant locator, facet, value factory, plug-in, object adapter,
* object, or user exception factory that is not currently registered.
*
* It's also raised if the Ice locator can't find an object or object
* adapter when resolving an indirect proxy or when an object adapter
* is activated.
*
**/
public class NotRegisteredException extends LocalException
{
public NotRegisteredException()
{
this.kindOfObject = "";
this.id = "";
}
public NotRegisteredException(Throwable cause)
{
super(cause);
this.kindOfObject = "";
this.id = "";
}
public NotRegisteredException(String kindOfObject, String id)
{
this.kindOfObject = kindOfObject;
this.id = id;
}
public NotRegisteredException(String kindOfObject, String id, Throwable cause)
{
super(cause);
this.kindOfObject = kindOfObject;
this.id = id;
}
public String
ice_id()
{
return "::Ice::NotRegisteredException";
}
/**
* The kind of object that could not be removed: "servant", "facet",
* "object", "default servant", "servant locator", "value factory", "plugin",
* "object adapter", "object adapter with router", "replica group".
*
**/
public String kindOfObject;
/**
* The ID (or name) of the object that could not be removed.
*
**/
public String id;
public static final long serialVersionUID = 3335358291266771447L;
}