code method

String code()

Implementation

String code() {
  if(value.trim().startsWith(errorCodePrefix)) {
    return value.trim().split(" ").first;
  }
  return "";
}