15 using System.Collections.Generic;
18 namespace ErrorManagement {
35 aux.AppendFormat(
"'{0}' does not contain a definition for '{1}'.", typeId, memberId);
36 this.Description = aux.ToString();
48 aux.AppendFormat(
"'{0}': no suitable member found.", memberId);
49 this.Description = aux.ToString();
61 aux.AppendFormat(
"'No suitable member found.");
62 this.Description = aux.ToString();
UnknownMemberError(Location loc)
Constructor of UnknownMemberError
This class encapsulates a location in a specific file. Implements an Inmutable pattern. So it can be used in any context, that is his internal fields never change.
System.Text.StringBuilder StringBuilder
UnknownMemberError(string typeId, string memberId, Location loc)
Constructor of UnknownMemberError
UnknownMemberError(string memberId, Location loc)
Constructor of UnknownMemberError
Represents an adapter of existing features in every error.
Represents a error produced when the attribute identifier is not defined.