// ********************************************************************** // // 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 `Locator.ice' // // Warning: do not edit this file. // // </auto-generated> /** * This exception is raised if a server tries to set endpoints for * an adapter that is already active. * **/ public class AdapterAlreadyActiveException extends Ice.UserException { public String ice_name() { return "Ice::AdapterAlreadyActiveException"; } public void __write(IceInternal.BasicStream __os) { __os.writeString("::Ice::AdapterAlreadyActiveException"); __os.startWriteSlice(); __os.endWriteSlice(); } public void __read(IceInternal.BasicStream __is, boolean __rid) { if(__rid) { __is.readString(); } __is.startReadSlice(); __is.endReadSlice(); } public void __write(Ice.OutputStream __outS) { Ice.MarshalException ex = new Ice.MarshalException(); ex.reason = "exception Ice::AdapterAlreadyActiveException was not generated with stream support"; throw ex; } public void __read(Ice.InputStream __inS, boolean __rid) { Ice.MarshalException ex = new Ice.MarshalException(); ex.reason = "exception Ice::AdapterAlreadyActiveException was not generated with stream support"; throw ex; } }