![JAR search and dependency download from the Maven repository](/logo.png)
com.nfbsoftware.diffbot.model.ErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-diffbot Show documentation
Show all versions of simple-diffbot Show documentation
The NFB Software Simple-Diffbot is a Java wrapper for the Diffbot.com API for website data extraction.
package com.nfbsoftware.diffbot.model;
import java.math.BigDecimal;
/**
*
* @author brendanclemenzi
*/
public class ErrorResponse
{
private String m_error;
private BigDecimal m_errorCode;
public String getError()
{
return m_error;
}
public void setError(String error)
{
m_error = error;
}
public BigDecimal getErrorCode()
{
return m_errorCode;
}
public void setErrorCode(BigDecimal errorCode)
{
m_errorCode = errorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy