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

IceGrid.ApplicationNotExistException 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 application does not exist.
 *
 **/
public class ApplicationNotExistException extends Ice.UserException
{
    public ApplicationNotExistException()
    {
        this.name = "";
    }

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

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

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

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

    /**
     * The name of the application.
     *
     **/
    public String name;

    protected void
    _writeImpl(Ice.OutputStream ostr_)
    {
        ostr_.startSlice("::IceGrid::ApplicationNotExistException", -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 = 2202711951777385271L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy