Skip to content
Snippets Groups Projects
Commit 8020fe78 authored by brinn's avatar brinn
Browse files

add: template based error messages

SVN: 7226
parent 9e218ced
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,13 @@ public class Status
return new Status(StatusFlag.ERROR, message);
}
public static Status createError(String messageTemplate, Object ... args)
{
assert messageTemplate != null;
return new Status(StatusFlag.ERROR, String.format(messageTemplate, args));
}
public static Status createRetriableError()
{
return new Status(StatusFlag.RETRIABLE_ERROR, "");
......@@ -75,6 +82,13 @@ public class Status
return new Status(StatusFlag.RETRIABLE_ERROR, message);
}
public static Status createRetriableError(String messageTemplate, Object ... args)
{
assert messageTemplate != null;
return new Status(StatusFlag.RETRIABLE_ERROR, String.format(messageTemplate, args));
}
protected static StatusFlag getErrorFlag(boolean retriable)
{
return retriable ? StatusFlag.RETRIABLE_ERROR : StatusFlag.ERROR;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment