// ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** namespace Ice { /// /// AMDCallback is the interface from which all AMD callbacks are derived. /// public interface AMDCallback { /// /// Indicates to the Ice run time that an operation completed /// with a run-time exception. /// /// The encoded Ice run-time exception. Note that, if ex /// is a user exception, the caller receives UnknownUserException. /// Use ice_response to raise user exceptions. void ice_exception(System.Exception ex); } }