com.nulabinc.backlog4j.BacklogAPIError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
package com.nulabinc.backlog4j;
import java.util.Arrays;
import java.util.List;
/**
* The error class for Backlog exception.
* Contains the error massages.
*
* @author nulab-inc
*/
public class BacklogAPIError {
private BacklogAPIErrorMessage[] errors;
public List getErrors() {
return Arrays.asList(errors);
}
}