IceBox.AlreadyStoppedException 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 stop an
* already-stopped service.
*
**/
public class AlreadyStoppedException extends Ice.UserException
{
public AlreadyStoppedException()
{
}
public AlreadyStoppedException(Throwable cause)
{
super(cause);
}
public String
ice_id()
{
return "::IceBox::AlreadyStoppedException";
}
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceBox::AlreadyStoppedException", -1, true);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
istr_.endSlice();
}
public static final long serialVersionUID = 7275468492776734757L;
}