Source
String getMessage() {
if (msg != null) {
return msg;
}
if (type != null) {
// TODO, return normal case instead of camel case
return type;
}
return "Error";
}
String getMessage() {
if (msg != null) {
return msg;
}
if (type != null) {
// TODO, return normal case instead of camel case
return type;
}
return "Error";
}