exception.PaymentException Maven / Gradle / Ivy
package exception;
import lombok.Data;
/**
* Created by alexg on 21.11.17.
*/
@Data
public class PaymentException extends RuntimeException {
public PaymentException(String msg) {
this.message = msg;
}
private String message;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy