Skip to content

Commit

Permalink
fixed/added missing default branch in CmwLightMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
RalphSteinhagen committed Nov 13, 2020
1 parent 87411bc commit eec1e74
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,11 @@ public String toString() {
case SESSION_CONFIRM:
sb.append(", sessionBody='").append(sessionBody).append('\'');
break;
default:
throw new IllegalStateException("unknown client request message type: " + messageType);
}
default:
throw new IllegalStateException("unknown message type: " + messageType);
}
return sb.toString();
}
Expand Down

0 comments on commit eec1e74

Please sign in to comment.