IceStorm.NoSuchLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icestorm-compat Show documentation
Show all versions of icestorm-compat Show documentation
Publish-subscribe event distribution service
// **********************************************************************
//
// 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 remove a
* link that does not exist.
*
**/
public class NoSuchLink extends Ice.UserException
{
public NoSuchLink()
{
this.name = "";
}
public NoSuchLink(Throwable cause)
{
super(cause);
this.name = "";
}
public NoSuchLink(String name)
{
this.name = name;
}
public NoSuchLink(String name, Throwable cause)
{
super(cause);
this.name = name;
}
public String
ice_id()
{
return "::IceStorm::NoSuchLink";
}
/**
* The name of the link that does not exist.
*
**/
public String name;
protected void
_writeImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice("::IceStorm::NoSuchLink", -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 = 2188182471679050623L;
}