![JAR search and dependency download from the Maven repository](/logo.png)
com.lionbridge.content.sdk.ContentAPIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liox-content-sdk-java Show documentation
Show all versions of liox-content-sdk-java Show documentation
Client for Lionbridge Ondemand API
package com.lionbridge.content.sdk;
import java.util.ArrayList;
import java.util.List;
public class ContentAPIException extends Exception {
private List errors = new ArrayList<>();
public ContentAPIException() { }
public ContentAPIException(final Throwable e) {
super(e);
}
public ContentAPIException(final String message) {
super(new Throwable(message));
}
public List getErrors() {
return errors;
}
public void setErrors(List errors) {
this.errors = errors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy