IceBox.AlreadyStartedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icebox-compat Show documentation
Show all versions of icebox-compat Show documentation
IceBox is an easy-to-use framework for Ice application services
// **********************************************************************
//
// Copyright (c) 2003-2018 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.7.1
//
//
//
// Generated from file `IceBox.ice'
//
// Warning: do not edit this file.
//
//
//
package IceBox;
/**
* This exception is thrown if an attempt is made to start an
* already-started service.
*
**/
public class AlreadyStartedException extends Ice.UserException
{
public AlreadyStartedException()
{
}
public AlreadyStartedException(Throwable cause)
{
super(cause);
}
public String
ice_id()
{
return "::IceBox::AlreadyStartedException";
}
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceBox::AlreadyStartedException", -1, true);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
istr_.endSlice();
}
public static final long serialVersionUID = 115156757889290093L;
}