C# Client  0.0.0.7
C# Library to interface with Corelink
CorelinkException.cs
Go to the documentation of this file.
1 using System;
2 using UnityEditor;
3 using UnityEngine;
4 
5 namespace CoreLink
6 {
7  public class CorelinkException : Exception
8  {
10  { }
11 
12  public CorelinkException(string message) : base(message)
13  { }
14 
15  public CorelinkException(string message, Exception inner) : base(message, inner)
16  { }
17 
18  public CorelinkException(int statusCode, string message) :
19  base("statusCode: " + statusCode + " - " + message)
20  {
21 
22  }
23  }
24 }