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

            string testExceptionString = testException.ToString();

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

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