com.mozu.api.MultipleAccountsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
package com.mozu.api;
import java.util.List;
import com.mozu.api.contracts.adminuser.DeveloperAccount;
public class MultipleAccountsException extends Exception {
private static final long serialVersionUID = 1L;
protected List accounts;
public MultipleAccountsException(List accounts){
this.accounts = accounts;
}
public List getAccounts() {
return accounts;
}
public void setAccounts(List accounts) {
this.accounts = accounts;
}
}