All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scarabsoft.jrest.converter.exception.GsonExceptionConverterFactory Maven / Gradle / Ivy

package com.scarabsoft.jrest.converter.exception;

import com.google.gson.Gson;

public abstract class GsonExceptionConverterFactory implements ExceptionConverter.ExceptionConverterFactory {

    protected abstract Class getReturnType();

    @Override
    public ExceptionConverter get() {
        return new GsonExceptionConverter<>(new Gson().getAdapter(getReturnType()));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy