Kinetica   C#   API  Version 7.2.3.0
AvroRuntimeException.cs
Go to the documentation of this file.
1 
18 using System;
19 using System.Collections.Generic;
20 using System.Linq;
21 using System.Text;
22 
23 namespace Avro
24 {
26  {
27  public AvroRuntimeException(string s)
28  : base(s)
29  {
30 
31  }
32  public AvroRuntimeException(string s, Exception inner)
33  : base(s, inner)
34  {
35 
36  }
37  }
38 }
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
AvroRuntimeException(string s, Exception inner)