Kinetica   C#   API  Version 7.2.3.0
SpecificException.cs
Go to the documentation of this file.
1 
19 using System;
20 
21 namespace Avro.Specific
22 {
23  public abstract class SpecificException : Exception, ISpecificRecord
24  {
25  public abstract Schema Schema { get; }
26  public abstract object Get(int fieldPos);
27  public abstract void Put(int fieldPos, object fieldValue);
28  }
29 }
Base class for all schema types
Definition: Schema.cs:29
Interface class for generated classes
abstract void Put(int fieldPos, object fieldValue)
abstract object Get(int fieldPos)