All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.gov.service.payments.commons.api.exception.ValidationException Maven / Gradle / Ivy

There is a newer version: 1.0.20241120144934
Show newest version
package uk.gov.service.payments.commons.api.exception;

import java.util.List;

public class ValidationException extends RuntimeException {
    
    private List errors;

    public ValidationException(List errors) {
        this.errors = errors;
    }

    public List getErrors() {
        return errors;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy