enterprises.orbital.evekit.account.AccountUpdateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of account-manager Show documentation
Show all versions of account-manager Show documentation
EveKit account manager services
package enterprises.orbital.evekit.account;
/**
* Thrown if an update to an account would violate some constraint, currently:
*
*
* - Changing the name of an account to a name already in use.
* - Changing character or corporation information inconsistent with an existing credential.
*
*/
public class AccountUpdateException
extends Exception
{
public AccountUpdateException()
{
super();
}
public AccountUpdateException(String msg)
{
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy