aboutsummaryrefslogtreecommitdiff
path: root/Unicity.Renderer/ShaderCompilationFailedException.cs
diff options
context:
space:
mode:
authorAdrian Ulbrich <adrian.ulbrich.2003@gmail.com>2019-11-06 21:07:49 +0100
committerAdrian Ulbrich <adrian.ulbrich.2003@gmail.com>2019-11-06 21:07:49 +0100
commite63155370c817a1d9c16ef798b0a55e6fe328941 (patch)
treeab4a65ab60f2e547008eb6c1fe409633521bbf1f /Unicity.Renderer/ShaderCompilationFailedException.cs
parent5d4b4023bddd12e27c6756793aea2ff36d49e124 (diff)
downloadUnicity-e63155370c817a1d9c16ef798b0a55e6fe328941.tar.gz
Unicity-e63155370c817a1d9c16ef798b0a55e6fe328941.tar.bz2
Unicity-e63155370c817a1d9c16ef798b0a55e6fe328941.zip
3d support
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) { }
+ }
+}