com.capitalone.dashboard.model.Error Maven / Gradle / Ivy
package com.capitalone.dashboard.model;
public class Error {
private String message;
private String type;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy