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