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

com.github.dgrandemange.idempotencereceiver.api.exception.SubsequentPresentationException Maven / Gradle / Ivy

package com.github.dgrandemange.idempotencereceiver.api.exception;

import org.springframework.http.ResponseEntity;

public class SubsequentPresentationException extends IdempotentReceiverException {

	private static final long serialVersionUID = 1L;

	private final ResponseEntity responseEntity;

	public SubsequentPresentationException(ResponseEntity responseEntity) {
		super();
		this.responseEntity = responseEntity;
	}

	public ResponseEntity getResponseEntity() {
		return responseEntity;
	}

}