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

Ice.UnknownException Maven / Gradle / Ivy

Go to download

Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms

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

package Ice;

/**
 * This exception is raised if an operation call on a server raises an
 * unknown exception. For example, for C++, this exception is raised
 * if the server throws a C++ exception that is not directly or
 * indirectly derived from Ice::LocalException or
 * Ice::UserException.
 *
 **/
public class UnknownException extends LocalException
{
    public UnknownException()
    {
        this.unknown = "";
    }

    public UnknownException(Throwable cause)
    {
        super(cause);
        this.unknown = "";
    }

    public UnknownException(String unknown)
    {
        this.unknown = unknown;
    }

    public UnknownException(String unknown, Throwable cause)
    {
        super(cause);
        this.unknown = unknown;
    }

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

    /**
     * This field is set to the textual representation of the unknown
     * exception if available.
     *
     **/
    public String unknown;

    public static final long serialVersionUID = 4845487294380422868L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy