Esempio n. 1
0
 public Field(TokenReader tr)
 {
     Source = new SourcePath(tr);
 }
Esempio n. 2
0
 public Field(TokenReader tr)
 {
     Source = new SourcePath(tr);
 }
Esempio n. 3
0
 public ProtoFormatException(string message, SourcePath s) : base(message)
 {
     this.SourcePath = s;
 }
Esempio n. 4
0
 public ProtoFormatException(string message, Exception innerException, TokenReader tr) : base(message, innerException)
 {
     this.SourcePath = new SourcePath(tr);
 }
 public ProtoFormatException(string message, Exception innerException, TokenReader tr)
     : base(message, innerException)
 {
     this.SourcePath = new SourcePath(tr);
 }
 public ProtoFormatException(string message, SourcePath s)
     : base(message)
 {
     this.SourcePath = s;
 }