cz.mmsparams.api.http.TaskResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.http;
public class TaskResult
{
private final T result;
private final Exception error;
public T getResult()
{
return result;
}
public Exception getError()
{
return error;
}
public boolean hasResult()
{
return result != null;
}
public boolean hasError()
{
return error != null;
}
public TaskResult(T result)
{
super();
this.result = result;
this.error = null;
}
public TaskResult(Exception error)
{
super();
this.result = null;
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy