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

Ice.UserExceptionFactory 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.
//

package Ice;

/**
 * Instantiates user exceptions.
 *
 * @see InputStream#throwException
 **/
public interface UserExceptionFactory
{
    /**
     * Instantiate a user exception with the given Slice type ID (such as ::Module::MyException)
     * and throw it. If the implementation does not throw an exception, the Ice run time will fall back
     * to using its default behavior for instantiating the user exception.
     *
     * @param typeId The Slice type ID of the user exception to be created.
     * @throws UserException A user exception instance corresponding to the type ID.
     **/
    void createAndThrow(String typeId)
        throws UserException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy