aboutsummaryrefslogtreecommitdiff
path: root/Unicity.Renderer/WindowCreationFailedException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Unicity.Renderer/WindowCreationFailedException.cs')
-rw-r--r--Unicity.Renderer/WindowCreationFailedException.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Unicity.Renderer/WindowCreationFailedException.cs b/Unicity.Renderer/WindowCreationFailedException.cs
new file mode 100644
index 0000000..380ffb6
--- /dev/null
+++ b/Unicity.Renderer/WindowCreationFailedException.cs
@@ -0,0 +1,10 @@
+namespace Unicity.Renderer
+{
+ class WindowCreationFailedException : System.Exception
+ {
+ public WindowCreationFailedException(string message) : base(message)
+ {
+
+ }
+ }
+}