Correcting error message

This commit is contained in:
Joakim Erdfelt 2017-06-15 13:34:17 -07:00
parent b333fad9c2
commit 877fdaba8b
1 changed files with 2 additions and 2 deletions

View File

@ -283,8 +283,8 @@ public class WebSocketServerFactory extends ContainerLifeCycle implements WebSoc
}
}
}
throw new InvalidWebSocketException("Unable to create Session: unrecognized endpoint type: " + websocket.getClass().getName());
throw new InvalidWebSocketException("Unable to create Session: object unrecognized as websocket: " + websocket.getClass().getName());
}
/**