RPC: Signals and errors
RPCSignals.mesa
Andrew Birrell 30-Oct-81 12:23:27
Last Edited by: Birrell, September 7, 1983 4:11 pm
DIRECTORY
RPC USING[ AuthenticateFailure, CallFailure, ExportFailure, ImportFailure ];
RPCSignals: CEDAR PROGRAM
EXPORTS RPC =
BEGIN
AuthenticateFailed: PUBLIC ERROR[why: RPC.AuthenticateFailure] = CODE;
CallFailed: PUBLIC SIGNAL[why: RPC.CallFailure] = CODE;
ExportFailed: PUBLIC ERROR[why: RPC.ExportFailure] = CODE;
ImportFailed: PUBLIC ERROR[why: RPC.ImportFailure] = CODE;
END.