public DataAfterQuoteException(SourceTraceability source, string readValue) : base(source, " there's a field starting with a quote and whereas it ends that quote there seems" + " to be characters in that field after that ending quote. That isn't supported." + " This is what I read: '" + readValue + "'")
 {
 }
 public IllegalMultilineFieldException(SourceTraceability source) : base(source, format("Multi-line fields are illegal in this context and so this might suggest that " + "there's a field with a start quote, but a missing end quote. See %s @ position %d.", source.SourceDescription(), source.Position()))
 {
 }
 public MissingEndQuoteException(SourceTraceability source, int startingLine, char quoteChar) : base(source, "Missing end for quote (" + quoteChar + ") which started on line " + startingLine)
 {
 }
Example #4
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: protected FormatException(@Nonnull SourceTraceability source, @Nonnull String description)
        protected internal FormatException(SourceTraceability source, string description) : base("At " + source.SourceDescription() + " @ position " + source.Position() + " - " + description)
        {
            this._source = source;
        }