public void ConstructorWithMessageParameter_ShouldExist()
 {
     _ = new RudimentaryException("hello world!");
 }
 public void ConstructorWithMessageAndInnerExceptionParameters_ShouldExist()
 {
     _ = new RudimentaryException("hello world!", new Exception());
 }
 public void ConstructorWithNoParameter_ShouldExist()
 {
     _ = new RudimentaryException();
 }