OSDN Git Service

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