From 6a887662a4e83d5c2e34a9e46f53597242f61180 Mon Sep 17 00:00:00 2001 From: cinder Date: Sat, 11 Mar 2023 14:29:59 -0600 Subject: [PATCH] CommandLineArgumentsException ctors --- Programs/examples/TestClient/Program.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Programs/examples/TestClient/Program.cs b/Programs/examples/TestClient/Program.cs index bcae4842..6e6d5edb 100644 --- a/Programs/examples/TestClient/Program.cs +++ b/Programs/examples/TestClient/Program.cs @@ -8,6 +8,17 @@ namespace OpenMetaverse.TestClient [Serializable] public class CommandLineArgumentsException : Exception { + public CommandLineArgumentsException() : base() + { + } + + public CommandLineArgumentsException(string message) : base(message) + { + } + + public CommandLineArgumentsException(string message, Exception innerException) : base(message, innerException) + { + } } public class Program