forked from Unity-Technologies/com.unity.netcode.gameobjects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkConfigurationException.cs
More file actions
28 lines (25 loc) · 1007 Bytes
/
NetworkConfigurationException.cs
File metadata and controls
28 lines (25 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
namespace MLAPI.Exceptions
{
/// <summary>
/// Exception thrown when the operation can only be done on the server
/// </summary>
public class NetworkConfigurationException : Exception
{
/// <summary>
/// Constructs a NetworkConfigurationException
/// </summary>
public NetworkConfigurationException() { }
/// <summary>
/// Constructs a NetworkConfigurationException with a message
/// </summary>
/// <param name="message">The exception message</param>
public NetworkConfigurationException(string message) : base(message) { }
/// <summary>
/// Constructs a NetworkConfigurationException with a message and a inner exception
/// </summary>
/// <param name="message">The exception message</param>
/// <param name="inner">The inner exception</param>
public NetworkConfigurationException(string message, Exception inner) : base(message, inner) { }
}
}