CommandLineArgumentsException ctors

This commit is contained in:
cinder
2023-03-11 14:29:59 -06:00
parent 5973734f6f
commit 6a887662a4

View File

@@ -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