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

IceGrid.ObjectNotRegisteredException 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 an object is not registered.
 *
 **/
public class ObjectNotRegisteredException extends Ice.UserException
{
    public ObjectNotRegisteredException()
    {
        this.id = new Ice.Identity();
    }

    public ObjectNotRegisteredException(Throwable cause)
    {
        super(cause);
        this.id = new Ice.Identity();
    }

    public ObjectNotRegisteredException(Ice.Identity id)
    {
        this.id = id;
    }

    public ObjectNotRegisteredException(Ice.Identity id, Throwable cause)
    {
        super(cause);
        this.id = id;
    }

    public String
    ice_id()
    {
        return "::IceGrid::ObjectNotRegisteredException";
    }

    /**
     * The identity of the object.
     *
     **/
    public Ice.Identity id;

    protected void
    _writeImpl(Ice.OutputStream ostr_)
    {
        ostr_.startSlice("::IceGrid::ObjectNotRegisteredException", -1, true);
        Ice.Identity.ice_write(ostr_, id);
        ostr_.endSlice();
    }

    protected void
    _readImpl(Ice.InputStream istr_)
    {
        istr_.startSlice();
        id = Ice.Identity.ice_read(istr_);
        istr_.endSlice();
    }

    public static final long serialVersionUID = -7010281921534640567L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy