
com.sap.mobile.services.client.NoSuchTenantException Maven / Gradle / Ivy
The newest version!
package com.sap.mobile.services.client;
import lombok.Getter;
@Getter
public class NoSuchTenantException extends ClientException {
private final String tenantId;
NoSuchTenantException(final String tenantId) {
super(String.format("The tenant with id '%s' does not exist or is not subscribed to Mobile Services", tenantId));
this.tenantId = tenantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy