1 package com.atlassian.plugins.rest.module.jersey;
2
3 /**
4 * Thrown when an unsupported content type is specified
5 *
6 * @since 2.0
7 */
8 public class UnsupportedContentTypeException extends EntityConversionException
9 {
10 public UnsupportedContentTypeException(final String message, final Throwable cause)
11 {
12 super(message, cause);
13 }
14 }