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

com.github.bordertech.restfriends.envelope.ErrorEnvelope Maven / Gradle / Ivy

The newest version!
package com.github.bordertech.restfriends.envelope;

/**
 * Response envelope that holds error details.
 */
public interface ErrorEnvelope extends Envelope {

	/**
	 * @return the error detail
	 */
	ErrorDetail getError();

	/**
	 * @param error the error detail
	 */
	void setError(ErrorDetail error);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy