com.erigir.wrench.ape.exception.TimestampRequiredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wrench-ape Show documentation
Show all versions of wrench-ape Show documentation
A library to simplify API construction atop Spring MVC
package com.erigir.wrench.ape.exception;
import com.erigir.wrench.ape.http.ApeException;
/**
* Created by chrweiss on 6/28/14.
*/
@ApeException(
httpStatusCode = 400,
detailCode = 105,
message = "The X-TIMESTAMP header must be supplied in such requests",
developerMessage = "You must provide the X-TIMESTAMP header in signed requests (it is part of the signed package)"
)
public class TimestampRequiredException extends RuntimeException {
}