com.rapidapi.p.wordsapiv1.exceptions.ApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of words-api-sdk Show documentation
Show all versions of words-api-sdk Show documentation
This is a client SDK for words API
/*
* WordsAPILib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package com.rapidapi.p.wordsapiv1.exceptions;
import io.apimatic.core.types.CoreApiException;
import io.apimatic.coreinterfaces.http.Context;
/**
* This is the base class for all exceptions that represent an error response from the server.
*/
public class ApiException extends CoreApiException {
//UID for serialization
private static final long serialVersionUID = 1L;
//private fields
/**
* Initialization constructor.
* @param reason The reason for throwing exception
*/
public ApiException(String reason) {
super(reason);
// TODO Auto-generated constructor stub
}
/**
* Initialization constructor.
* @param reason The reason for throwing exception
* @param context The http context of the API exception
*/
public ApiException(String reason, Context context) {
super(reason, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy