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

IceBox.FailureException 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 `IceBox.ice'
//
// Warning: do not edit this file.
//
// 
//

package IceBox;

/**
 * This exception is a general failure notification. It is thrown
 * for errors such as a service encountering an error during
 * initialization, or the service manager being unable
 * to load a service executable.
 *
 **/
public class FailureException extends Ice.LocalException
{
    public FailureException()
    {
        this.reason = "";
    }

    public FailureException(Throwable cause)
    {
        super(cause);
        this.reason = "";
    }

    public FailureException(String reason)
    {
        this.reason = reason;
    }

    public FailureException(String reason, Throwable cause)
    {
        super(cause);
        this.reason = reason;
    }

    public String
    ice_id()
    {
        return "::IceBox::FailureException";
    }

    /**
     * The reason for the failure.
     *
     **/
    public String reason;

    public static final long serialVersionUID = -7740030157337496059L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy