OSDN Git Service

ブロックの括弧を独立した行に書く (SA1500, SA1501, SA1502)
[opentween/open-tween.git] / OpenTween / ApiKey.cs
index 8437181..0ed7920 100644 (file)
@@ -234,12 +234,23 @@ namespace OpenTween
     [Serializable]
     public class ApiKeyDecryptException : Exception
     {
-        public ApiKeyDecryptException() { }
+        public ApiKeyDecryptException()
+        {
+        }
+
         public ApiKeyDecryptException(string message)
-            : base(message) { }
+            : base(message)
+        {
+        }
+
         public ApiKeyDecryptException(string message, Exception innerException)
-            : base(message, innerException) { }
+            : base(message, innerException)
+        {
+        }
+
         protected ApiKeyDecryptException(SerializationInfo info, StreamingContext context)
-            : base(info, context) { }
+            : base(info, context)
+        {
+        }
     }
 }