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  {
12      public EntityConversionException(final String message, final Throwable cause)
13      {
14          super(message, cause);
15      }
16  
17      public EntityConversionException(final Throwable cause)
18      {
19          super(cause);
20      }
21  }