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

ru.foodtechlab.lib.auth.service.domain.credential.exceptions.CredentialWithEmailAlreadyExistException Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package ru.foodtechlab.lib.auth.service.domain.credential.exceptions;

import com.rcore.domain.commons.exception.DefaultValueIsNotUniqueException;
import ru.foodtechlab.lib.auth.service.domain.Domain;

public class CredentialWithEmailAlreadyExistException extends DefaultValueIsNotUniqueException {

    public CredentialWithEmailAlreadyExistException() {
        super(Domain.CREDENTIAL, "email");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy