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

io.corbel.iam.exception.DomainAlreadyExists Maven / Gradle / Ivy

There is a newer version: 1.44.0
Show newest version
package io.corbel.iam.exception;

public class DomainAlreadyExists extends Exception {

    private final String domain;

    public DomainAlreadyExists(String domain) {
        this.domain = domain;
    }

    public String getDomain() {
        return domain;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy