Exceptions and HTTP
In many situations, you may want to use common HTTP status codes to indicate
the success or failure of a user's API request. For example, if a user is
attempting to retrieve an entity which does not exist, you may want to send an
HTTP 404 status code saying No entity exists with ID: entityId.
You can send such common HTTP status codes by throwing an exception provided by the endpoints library as follows:
String message = "No entity exists with ID: " + entityId;
throw new NotFoundException(message);
Exceptions Provided by Endpoints
The endpoints library provides the following exceptions, corresponding to specific HTTP status codes:
| Exception | Corresponding HTTP Status Code |
|---|---|
com.google.api.server.spi.response.BadRequestException |
HTTP 400 |
com.google.api.server.spi.response.UnauthorizedException |
HTTP 401 |
com.google.api.server.spi.response.ForbiddenException |
HTTP 403 |
com.google.api.server.spi.response.NotFoundException |
HTTP 404 |
com.google.api.server.spi.response.ConflictException |
HTTP 409 |
com.google.api.server.spi.response.InternalServerErrorException |
HTTP 500 |
com.google.api.server.spi.response.ServiceUnavailableException |
HTTP 503 |
Supported HTTP Status Codes
Endpoints supports a subset of HTTP status codes in API responses. The following table describes the supported codes.
| HTTP Status Codes | Support |
|---|---|
| HTTP 2xx | HTTP 200 is typically assumed by Endpoints if the API method returns successfully.If the API method response type is void or the return value of the API method is null , HTTP 204 will be set instead.HTTP 2xx codes should not be used in custom exception classes. |
| HTTP 3xx | HTTP 3xx codes are not supported. Use of any HTTP 3xx codes will result in an HTTP 404 response. |
| HTTP 4xx | Only the HTTP 4xx codes listed below are supported:
|
| HTTP 5xx | All HTTP 5xx status codes are converted to be HTTP 503 in the client response. |
Creating Your Own Exception Classes
If you want to create other exception classes for other HTTP status codes, you
can do so by subclassing com.google.api.server.spi.ServiceException. The
following snippet shows how to create an exception class that represents an
HTTP 408 status code:
import com.google.api.server.spi.ServiceException;
public class RequestTimeoutException extends ServiceException {
public RequestTimeoutException(String message) {
super(408, message);
}
}