uoa-repository-manager-service/src/main/java/eu/dnetlib/repo/manager/exception/RepositoryServiceException....

52 lines
1.2 KiB
Java
Raw Normal View History

2022-08-03 17:08:42 +02:00
package eu.dnetlib.repo.manager.exception;
2017-12-07 18:57:12 +01:00
/**
* Created by nikonas on 7/12/15.
*/
public class RepositoryServiceException extends Exception {
2017-12-07 18:57:12 +01:00
public enum ErrorCode{
2017-12-07 18:57:12 +01:00
REPOSITORY_ALREADY_EXISTS,
SQL_ERROR,
NOT_ACTIVATED,
ACTIVATION_ERROR,
LDAP_ERROR,
MAIL_ALREADY_EXISTS,
GENERAL_ERROR,
ALREADY_ACTIVATED,
INVALID_EMAIL_FORMAT,
NO_REPOS_FOR_THIS_COUNTRY, REPOSITORY_NOT_EXISTS, INCORRECT_CAPTCHA
}
private ErrorCode errorCode = null;
public RepositoryServiceException() {
}
public RepositoryServiceException(ErrorCode errorCode) {
this.errorCode = errorCode;
}
public RepositoryServiceException(String message, Throwable cause, ErrorCode errorCode) {
super(message, cause);
this.errorCode = errorCode;
}
public RepositoryServiceException(String message, ErrorCode errorCode) {
super(message);
this.errorCode = errorCode;
}
public RepositoryServiceException(Throwable cause, ErrorCode errorCode) {
super(cause);
this.errorCode = errorCode;
}
public ErrorCode getErrorCode() {
return errorCode;
}
}