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

IceStorm.NoSuchTopic Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
// **********************************************************************
//
// 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 `IceStorm.ice'
//
// Warning: do not edit this file.
//
// 
//

package IceStorm;

/**
 * This exception indicates that an attempt was made to retrieve a
 * topic that does not exist.
 *
 **/
public class NoSuchTopic extends Ice.UserException
{
    public NoSuchTopic()
    {
        this.name = "";
    }

    public NoSuchTopic(Throwable cause)
    {
        super(cause);
        this.name = "";
    }

    public NoSuchTopic(String name)
    {
        this.name = name;
    }

    public NoSuchTopic(String name, Throwable cause)
    {
        super(cause);
        this.name = name;
    }

    public String
    ice_id()
    {
        return "::IceStorm::NoSuchTopic";
    }

    /**
     * The name of the topic that does not exist.
     *
     **/
    public String name;

    protected void
    _writeImpl(Ice.OutputStream ostr_)
    {
        ostr_.startSlice("::IceStorm::NoSuchTopic", -1, true);
        ostr_.writeString(name);
        ostr_.endSlice();
    }

    protected void
    _readImpl(Ice.InputStream istr_)
    {
        istr_.startSlice();
        name = istr_.readString();
        istr_.endSlice();
    }

    public static final long serialVersionUID = -4051100987073689378L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy