From 7c96bafc19a4d5851678045c42086b6aa3899e6f Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 8 Apr 2014 21:08:53 +0900 Subject: [PATCH] Fix a few for WebSocketException.cs --- websocket-sharp/WebSocketException.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/websocket-sharp/WebSocketException.cs b/websocket-sharp/WebSocketException.cs index 682b7833..1bb64efe 100644 --- a/websocket-sharp/WebSocketException.cs +++ b/websocket-sharp/WebSocketException.cs @@ -42,8 +42,8 @@ namespace WebSocketSharp { } - internal WebSocketException (string reason) - : this (CloseStatusCode.Abnormal, reason, null) + internal WebSocketException (string message) + : this (CloseStatusCode.Abnormal, message, null) { } @@ -52,18 +52,18 @@ namespace WebSocketSharp { } - internal WebSocketException (string reason, Exception innerException) - : this (CloseStatusCode.Abnormal, reason, innerException) + internal WebSocketException (string message, Exception innerException) + : this (CloseStatusCode.Abnormal, message, innerException) { } - internal WebSocketException (CloseStatusCode code, string reason) - : this (code, reason, null) + internal WebSocketException (CloseStatusCode code, string message) + : this (code, message, null) { } - internal WebSocketException (CloseStatusCode code, string reason, Exception innerException) - : base (reason ?? code.GetMessage (), innerException) + internal WebSocketException (CloseStatusCode code, string message, Exception innerException) + : base (message ?? code.GetMessage (), innerException) { Code = code; }