de.adorsys.datasafe.rest.impl.exceptions.UserDoesNotExistsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datasafe-rest-impl Show documentation
Show all versions of datasafe-rest-impl Show documentation
Spring Boot DataSafe Application
package de.adorsys.datasafe.rest.impl.exceptions;
public class UserDoesNotExistsException extends RuntimeException {
public UserDoesNotExistsException(String message) {
super(message);
}
}