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

com.zeroc.Ice.RequestFailedException Maven / Gradle / Ivy

//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.2
//
// 
//
// Generated from file `LocalException.ice'
//
// Warning: do not edit this file.
//
// 
//

package com.zeroc.Ice;

/**
 * This exception is raised if a request failed. This exception, and
 * all exceptions derived from {@link RequestFailedException}, are
 * transmitted by the Ice protocol, even though they are declared
 * local.
 **/
public class RequestFailedException extends LocalException
{
    public RequestFailedException()
    {
        this.id = new Identity();
        this.facet = "";
        this.operation = "";
    }

    public RequestFailedException(Throwable cause)
    {
        super(cause);
        this.id = new Identity();
        this.facet = "";
        this.operation = "";
    }

    public RequestFailedException(Identity id, String facet, String operation)
    {
        this.id = id;
        this.facet = facet;
        this.operation = operation;
    }

    public RequestFailedException(Identity id, String facet, String operation, Throwable cause)
    {
        super(cause);
        this.id = id;
        this.facet = facet;
        this.operation = operation;
    }

    public String ice_id()
    {
        return "::Ice::RequestFailedException";
    }

    /**
     * The identity of the Ice Object to which the request was sent.
     **/
    public Identity id;

    /**
     * The facet to which the request was sent.
     **/
    public String facet;

    /**
     * The operation name of the request.
     **/
    public String operation;

    /** @hidden */
    public static final long serialVersionUID = 4181164754424262091L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy