Skip to content

Commit

Permalink
CommandLineArgumentsException ctors
Browse files Browse the repository at this point in the history
  • Loading branch information
cinderblocks committed Mar 11, 2023
1 parent 5973734 commit 6a88766
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Programs/examples/TestClient/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6a88766

Please sign in to comment.