This repository was archived by the owner on Dec 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExceptions.cs
More file actions
51 lines (45 loc) · 2.08 KB
/
Exceptions.cs
File metadata and controls
51 lines (45 loc) · 2.08 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
namespace Rift.RiftEngine.Core
{
public class ConfigFileNotFoundException : Exception
{
public ConfigFileNotFoundException() { }
public ConfigFileNotFoundException(string message) : base(message) { }
public ConfigFileNotFoundException(string message, Exception inner) : base(message, inner) { }
}
public class FilePathInvalidException : Exception
{
public FilePathInvalidException() { }
public FilePathInvalidException(string message) : base(message) { }
public FilePathInvalidException(string message, Exception inner) : base(message, inner) { }
}
public class GameReferenceNullException : Exception
{
public GameReferenceNullException() { }
public GameReferenceNullException(string message) : base(message) { }
public GameReferenceNullException(string message, Exception inner) : base(message, inner) { }
}
public class GameAlreadyInitializedException : Exception
{
public GameAlreadyInitializedException() { }
public GameAlreadyInitializedException(string message) : base(message) { }
public GameAlreadyInitializedException(string message, Exception inner) : base(message, inner) { }
}
public class GameAlreadyRunningException : Exception
{
public GameAlreadyRunningException() { }
public GameAlreadyRunningException(string message) : base(message) { }
public GameAlreadyRunningException(string message, Exception inner) : base(message, inner) { }
}
public class GameNotRunningException : Exception
{
public GameNotRunningException() { }
public GameNotRunningException(string message) : base(message) { }
public GameNotRunningException(string message, Exception inner) : base(message, inner) { }
}
public class GameNotInitializedException : Exception
{
public GameNotInitializedException() { }
public GameNotInitializedException(string message) : base(message) { }
public GameNotInitializedException(string message, Exception inner) : base(message, inner) { }
}
}