コード例 #1
0
 public GenericError(AvroException exception, GenericRecord record)
     : base(record, true)
 {
     Exception = exception;
 }
コード例 #2
0
 public GenericError(AvroException exception, ErrorSchema schema)
     : base(schema)
 {
     Exception = exception;
 }
コード例 #3
0
 public GenericError(AvroException exception, ErrorSchema schema, IReadOnlyDictionary <string, int> index, ValueTuple <int, Func <object> >[] defaultInitializers)
     : base(schema, index, defaultInitializers)
 {
     Exception = exception;
 }