C# Client 0.0.0.7
C# Library to interface with Corelink
Loading...
Searching...
No Matches
CorelinkException.cs
Go to the documentation of this file.
1using System;
2using UnityEditor;
3using UnityEngine;
4
5namespace 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}