OSDN Git Service

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