org.vfdtech.exceptions.CustomException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities-and-generic-tools Show documentation
Show all versions of utilities-and-generic-tools Show documentation
A utilities service with generic tools implementation. Can be
plugged into your java project
package org.vfdtech.exceptions;
import lombok.Getter;
import lombok.Setter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.vfdtech.MessageContent;
import java.util.NoSuchElementException;
@Getter
@Setter
@JsonInclude(JsonInclude.Include.NON_NULL)
public class CustomException extends Exception {
private static final long serialVersionUID = -1335544445896736296L;
private String message;
Object data;
boolean success;
public CustomException(String message, Object data) {
this.success = false;
this.message = message;
this.data = data;
}
public CustomException(CustomException e) {
this.success = e.isSuccess();
this.message = e.getMessage();
this.data = e.getData();
}
public CustomException(Exception e) throws CustomException {
if (e.getClass().isAssignableFrom(CustomException.class)) {
throw new CustomException(e.getMessage());
} else if (e.getClass().isAssignableFrom(NoSuchElementException.class)) {
throw new CustomException(MessageContent.noRecordFound);
} else {
throw new CustomException(MessageContent.errorOccurred);
}
}
public CustomException(String message) {
this.message = message;
}
}