View Javadoc

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       public UnsupportedContentTypeException(final String message, final Throwable cause) {
10          super(message, cause);
11      }
12  }