com.github.jasminb.jsonapi.exceptions.DocumentSerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonapi-converter Show documentation
Show all versions of jsonapi-converter Show documentation
JSONAPI-Converter is a library that provides means for integrating with services using JSON API specification.
package com.github.jasminb.jsonapi.exceptions;
/**
* Thrown in case resource serialization fails.
*
* @author jbegic
*/
public class DocumentSerializationException extends Exception {
/**
* Creates new DocumentSerializationException.
* @param cause {@link Throwable} exception cause
*/
public DocumentSerializationException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy