// ********************************************************************** // // Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** // Ice version 3.4.1 package Ice; // <auto-generated> // // Generated from file `LocalException.ice' // // Warning: do not edit this file. // // </auto-generated> /** * An attempt was made to register something more than once with * the Ice run time. * * This exception is raised if an attempt is made to register a * servant, servant locator, facet, object factory, plug-in, object * adapter, object, or user exception factory more than once for the * same ID. * **/ public class AlreadyRegisteredException extends Ice.LocalException { public AlreadyRegisteredException() { } public AlreadyRegisteredException(String kindOfObject, String id) { this.kindOfObject = kindOfObject; this.id = id; } public String ice_name() { return "Ice::AlreadyRegisteredException"; } /** * The kind of object that is registered already: "servant", * "servant locator", "object factory", "plug-in", * "object adapter", "object", or "user exception factory". * **/ public String kindOfObject; /** * The ID (or name) of the object that is registered already. * **/ public String id; }