package foundation.handler;
|
|
import foundation.json.IJSONProvider;
|
|
public class ExistsError {
|
|
private String errorType;
|
private String title;
|
private IJSONProvider errorSet;
|
|
public ExistsError(String errorType, String title, IJSONProvider errorSet) {
|
this.errorType = errorType;
|
this.title = title;
|
this.errorSet = errorSet;
|
}
|
|
public String getErrorType() {
|
return errorType;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public IJSONProvider getErrorSet() {
|
return errorSet;
|
}
|
}
|