Lines Matching refs:description
44 private readonly string description;
55 /// A human-readable description of the error. (The Message property
56 /// is made up of the descriptor's name and this description.)
60 get { return description; }
63 internal DescriptorValidationException(IDescriptor problemDescriptor, string description) :
64 base(problemDescriptor.FullName + ": " + description)
70 this.description = description;
73 internal DescriptorValidationException(IDescriptor problemDescriptor, string description, Exception cause) :
74 base(problemDescriptor.FullName + ": " + description, cause)
77 this.description = description;