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

com.cloudesire.tisana4j.exceptions.RestException Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.cloudesire.tisana4j.exceptions;

public class RestException extends Exception
{

    private static final long serialVersionUID = 8156589269399467370L;
    private final Integer responseCode;

    public RestException( Integer responseCode, String msgError )
    {
        super( msgError );
        this.responseCode = responseCode;
    }

    public RestException( Exception e )
    {
        super( e );
        this.responseCode = null;
    }

    public int getResponseCode()
    {
        return responseCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy