Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
KineticaException.cs
Go to the documentation of this file.
1 using System;
2 using System.Runtime.Serialization;
3 
4 
5 namespace kinetica
6 {
7  [Serializable()]
8  public class KineticaException : System.Exception
9  {
10  private string message;
11 
12  public KineticaException() { }
13 
14  public KineticaException(string msg) : base ( msg ) { }
15 
16  public KineticaException( string msg, Exception innerException ) :
17  base( msg, innerException ) { }
18 
19  protected KineticaException( SerializationInfo info, StreamingContext context )
20  : base ( info, context ) { }
21 
22  public string what() { return message; }
23 
24  public override string ToString() { return "KineticaException: " + message; }
25  }
26 }
KineticaException(string msg, Exception innerException)
KineticaException(SerializationInfo info, StreamingContext context)