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

org.tkit.quarkus.rs.context.tenant.TenantRequiredException Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package org.tkit.quarkus.rs.context.tenant;

import org.tkit.quarkus.rs.context.RestContextException;

public class TenantRequiredException extends RestContextException {

    public TenantRequiredException() {
        super(ErrorKeys.TENANT_REQUIRED, "Tenant is required");
    }

    public enum ErrorKeys {

        TENANT_REQUIRED;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy