All Downloads are FREE. Search and download functionalities are using the official Maven repository.

IceGrid.PatchException Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
//
// 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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy