Minor Javadoc fix

Issue: SPR-9513
This commit is contained in:
Rossen Stoyanchev 2012-06-18 06:30:34 -04:00
parent e8bf25ba9d
commit 277a115f8b
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ public abstract class HttpMediaTypeException extends ServletException {
private final List<MediaType> supportedMediaTypes; private final List<MediaType> supportedMediaTypes;
/** /**
* Create a new MediaTypeException. * Create a new HttpMediaTypeException.
* @param message the exception message * @param message the exception message
*/ */
protected HttpMediaTypeException(String message) { protected HttpMediaTypeException(String message) {
@ -42,7 +42,7 @@ public abstract class HttpMediaTypeException extends ServletException {
} }
/** /**
* Create a new HttpMediaTypeNotSupportedException. * Create a new HttpMediaTypeException with a list of supported media types.
* @param supportedMediaTypes the list of supported media types * @param supportedMediaTypes the list of supported media types
*/ */
protected HttpMediaTypeException(String message, List<MediaType> supportedMediaTypes) { protected HttpMediaTypeException(String message, List<MediaType> supportedMediaTypes) {