public void TestDefaultConstructor()
        {
            BadRequestException testException = new BadRequestException();

            string testExceptionString = testException.ToString();

            Assert.IsNotNull(testExceptionString);
        }
    public void TestDefaultConstructor() {
      BadRequestException testException = new BadRequestException();

      string testExceptionString = testException.ToString();
      Assert.IsNotNull(testExceptionString);
    }