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

io.mosip.preregistration.notification.exception.NotificationSeriveException Maven / Gradle / Ivy

There is a newer version: 1.0.10-rc1
Show newest version
package io.mosip.preregistration.notification.exception;

import java.util.List;

import io.mosip.kernel.core.exception.BaseUncheckedException;
import io.mosip.kernel.core.exception.ServiceError;
import io.mosip.preregistration.core.common.dto.MainResponseDTO;
import lombok.Getter;

@Getter
public class NotificationSeriveException extends BaseUncheckedException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 8039562312343751179L;

	private List validationErrorList;
	private MainResponseDTO mainResponseDTO;

	public List getValidationErrorList() {
		return validationErrorList;
	}

	public NotificationSeriveException(List validationErrorList, MainResponseDTO response) {
		this.validationErrorList = validationErrorList;
		this.mainResponseDTO = response;
	}

	public MainResponseDTO getMainResposneDTO() {
		return mainResponseDTO;
	}

	public NotificationSeriveException() {
		super();
	}

	public NotificationSeriveException(String arg0, String arg1, Throwable arg2, MainResponseDTO response) {
		super(arg0, arg1, arg2);
		this.mainResponseDTO = response;
	}

	public NotificationSeriveException(String errorCode, String errorMessage, MainResponseDTO response) {
		super(errorCode, errorMessage);
		this.mainResponseDTO = response;
	}

	public NotificationSeriveException(String errorMessage, MainResponseDTO response) {
		super(errorMessage);
		this.mainResponseDTO = response;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy