PaymentNotFoundException.java 340 Bytes
package com.ecommerce.payment.exception;

public class PaymentNotFoundException extends RuntimeException {
    public PaymentNotFoundException(String message) {
        super(message);
    }
    
    public PaymentNotFoundException(String paymentId, String type) {
        super("Payment not found with " + type + ": " + paymentId);
    }
}