IceBox.FailureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icebox-compat Show documentation
Show all versions of icebox-compat Show documentation
IceBox is an easy-to-use framework for Ice application services
//
// 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;
}