aboutsummaryrefslogtreecommitdiff
path: root/src/BuildFailedException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/BuildFailedException.cs')
-rw-r--r--src/BuildFailedException.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/BuildFailedException.cs b/src/BuildFailedException.cs
new file mode 100644
index 0000000..7f8f695
--- /dev/null
+++ b/src/BuildFailedException.cs
@@ -0,0 +1,16 @@
+using System;
+
+namespace VNLib.Tools.Build.Executor
+{
+ internal class BuildFailedException : Exception
+ {
+ public BuildFailedException()
+ { }
+
+ public BuildFailedException(string? message) : base(message)
+ { }
+
+ public BuildFailedException(string? message, Exception? innerException) : base(message, innerException)
+ { }
+ }
+} \ No newline at end of file