IceGrid.PatchException 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 a patch failed.
*
**/
public class PatchException extends Ice.UserException
{
public PatchException()
{
}
public PatchException(Throwable cause)
{
super(cause);
}
public PatchException(String[] reasons)
{
this.reasons = reasons;
}
public PatchException(String[] reasons, Throwable cause)
{
super(cause);
this.reasons = reasons;
}
public String
ice_id()
{
return "::IceGrid::PatchException";
}
/**
* The reasons why the patch failed.
*
**/
public String[] reasons;
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceGrid::PatchException", -1, true);
Ice.StringSeqHelper.write(ostr_, reasons);
ostr_.endSlice();
}
protected void
_readImpl(Ice.InputStream istr_)
{
istr_.startSlice();
reasons = Ice.StringSeqHelper.read(istr_);
istr_.endSlice();
}
public static final long serialVersionUID = 4582871791336708693L;
}