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.
1
using
System;
2
using
UnityEditor;
3
using
UnityEngine;
4
5
namespace
CoreLink
6
{
7
public
class
CorelinkException
: Exception
8
{
9
public
CorelinkException
()
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
}
CoreLink.CorelinkException
Definition
CorelinkException.cs:8
CoreLink.CorelinkException.CorelinkException
CorelinkException()
Definition
CorelinkException.cs:9
CoreLink.CorelinkException.CorelinkException
CorelinkException(int statusCode, string message)
Definition
CorelinkException.cs:18
CoreLink.CorelinkException.CorelinkException
CorelinkException(string message)
Definition
CorelinkException.cs:12
CoreLink.CorelinkException.CorelinkException
CorelinkException(string message, Exception inner)
Definition
CorelinkException.cs:15
CoreLink
Definition
Control.cs:11
CoreLink
CorelinkException.cs
Generated by
1.11.0