Ejemplo n.º 1
0
 public Field(TokenReader tr)
 {
     Source = new SourcePath(tr);
 }
Ejemplo n.º 2
0
 public Field(TokenReader tr)
 {
     Source = new SourcePath(tr);
 }
Ejemplo n.º 3
0
 public ProtoFormatException(string message, SourcePath s) : base(message)
 {
     this.SourcePath = s;
 }
Ejemplo 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;
 }