View Javadoc

1   package com.atlassian.plugins.rest.module.jersey;
2   
3   import java.io.IOException;
4   
5   /**
6    * Acts as a wrapper for {@link IOException}s encountered when marshalling or unmarshalling objects
7    *
8    * @since 2.0
9    */
10  public class EntityConversionException extends RuntimeException {
11      public EntityConversionException(final String message, final Throwable cause) {
12          super(message, cause);
13      }
14  
15      public EntityConversionException(final Throwable cause) {
16          super(cause);
17      }
18  }