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

com.lionbridge.content.sdk.ContentAPIException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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