IceGrid.BadSignalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icegrid-compat Show documentation
Show all versions of icegrid-compat Show documentation
Locate, deploy, and manage Ice servers
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Exception.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
/**
* This exception is raised if an unknown signal was sent to
* to a server.
*
**/
public class BadSignalException extends Ice.UserException
{
public BadSignalException()
{
this.reason = "";
}
public BadSignalException(Throwable cause)
{
super(cause);
this.reason = "";
}
public BadSignalException(String reason)
{
this.reason = reason;
}
public BadSignalException(String reason, Throwable cause)
{
super(cause);
this.reason = reason;
}
public String
ice_id()
{
return "::IceGrid::BadSignalException";
}
/**
* The details of the unknown signal.
*
**/
public String reason;
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceGrid::BadSignalException", -1, true);
ostr_.writeString(reason);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
reason = istr_.readString();
istr_.endSlice();
}
public static final long serialVersionUID = 3049836372803731729L;
}