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