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

com.dtsx.astra.sdk.streaming.exception.TenantNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package com.dtsx.astra.sdk.streaming.exception;

/**
 * Exception thrown when accessing a tenant that does not exist.
 */
public class TenantNotFoundException extends RuntimeException {

    /**
     * Constructor with tenant name
     * 
     * @param tenantName
     *      tenant name
     */
    public TenantNotFoundException(String tenantName) {
        super("Tenant '" + tenantName + "' has not been found.");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy