RPCSignals.mesa: Signals and errors
Copyright © 1985 by Xerox Corporation. All rights reserved.
Andrew Birrell September 7, 1983 4:11 pm
Russ Atkinson (RRA) February 13, 1985 12:46:21 pm PST
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.