public void WhenICreateAnAlertExceptionWithTheTextMessage()
 {
     _alertException = new FluentAlertException(_textMessage);
 }
 public void WhenICreateAnAlertExceptionWithTheBuilder()
 {
     _alertException = new FluentAlertException(_builder);
 }
 public void WhenICreateAnAlertExceptionWithTheAlert()
 {
     _alertException = new FluentAlertException(_alert);
 }
 public void WhenICreateAnAlertExceptionWithTextMessageAndTheInnerException()
 {
     _alertException = new FluentAlertException(_textMessage,_innerException);
 }
 public void WhenICreateAnAlertExceptionWithAnAlertAndOtherException()
 {
     _alertException = new FluentAlertException(_alert, _innerException);
 }
 public void WhenICreateAnAlertExceptionWithABuilderAndOtherException()
 {
     _alertException = new FluentAlertException(_builder, _innerException);
 }