diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index c001163e..4ee71851 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -1065,15 +1065,12 @@ namespace WebSocketSharp.Server
/// -or-
///
///
- /// The session could not be found.
- ///
- ///
- /// -or-
- ///
- ///
/// could not be UTF-8-encoded.
///
///
+ ///
+ /// The session could not be found.
+ ///
///
/// The size of is greater than 125 bytes.
///
@@ -1082,7 +1079,7 @@ namespace WebSocketSharp.Server
IWebSocketSession session;
if (!TryGetSession (id, out session)) {
var msg = "The session could not be found.";
- throw new ArgumentException (msg, "id");
+ throw new InvalidOperationException (msg);
}
return session.Context.WebSocket.Ping (message);