IOErrorFormatting.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Last tweaked by Mike Spreitzer on March 20, 1992 2:28 pm PST
DIRECTORY IO, Rope;
IOErrorFormatting: CEDAR DEFINITIONS = {
ROPE: TYPE ~ Rope.ROPE;
RopeFromErrorCode: PROC [IO.ErrorCode] RETURNS [ROPE];
FormatError: PROC [ec: IO.ErrorCode, details: LIST OF REF ¬ NIL, msg: ROPE ¬ NIL] RETURNS [ROPE];
}.