mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-04-16 12:28:03 +00:00
[AB-258] improving handling of request failures for urban dictionary
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package dev.sheldan.abstracto.webservices.urban.exception;
|
||||
|
||||
import dev.sheldan.abstracto.core.exception.AbstractoRunTimeException;
|
||||
import dev.sheldan.abstracto.core.templating.Templatable;
|
||||
import dev.sheldan.abstracto.webservices.urban.model.exception.UrbanDictionaryRequestExceptionModel;
|
||||
|
||||
public class UrbanDictionaryRequestException extends AbstractoRunTimeException implements Templatable {
|
||||
|
||||
private final UrbanDictionaryRequestExceptionModel model;
|
||||
|
||||
public UrbanDictionaryRequestException(Integer responseCode) {
|
||||
super(String.format("Request failure towards urban dictionary %s.", responseCode));
|
||||
this.model = UrbanDictionaryRequestExceptionModel
|
||||
.builder()
|
||||
.responseCode(responseCode)
|
||||
.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTemplateName() {
|
||||
return "urban_dictionary_request_exception";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getTemplateModel() {
|
||||
return model;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package dev.sheldan.abstracto.webservices.urban.model.exception;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@Builder
|
||||
public class UrbanDictionaryRequestExceptionModel implements Serializable {
|
||||
private Integer responseCode;
|
||||
}
|
||||
Reference in New Issue
Block a user