
org.infobip.mobile.messaging.api.support.ApiBackendExceptionWithContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-mobile-messaging-api-java Show documentation
Show all versions of infobip-mobile-messaging-api-java Show documentation
Mobile Messaging SDK for Android
The newest version!
package org.infobip.mobile.messaging.api.support;
/**
* @author sslavin
* @since 17/10/2017.
*/
public class ApiBackendExceptionWithContent extends ApiIOException {
private final Object content;
public ApiBackendExceptionWithContent(String code, String message, Object content) {
super(code, message);
this.content = content;
}
public Object getContent() {
return content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy