InvalidPaymentRequestException.java

package dev.ianrobrien.fakebank.payments;

/***
 * Thrown to indicate the payment request is invalid
 */
public class InvalidPaymentRequestException extends RuntimeException {

  /***
   * Constructs an instance of InvalidPaymentRequestException
   */
  public InvalidPaymentRequestException() {
    super("Invalid payment request");
  }
}