Small style things
[zxing.git] / csharp / WriterException.cs
index 6148a1a..e36569e 100755 (executable)
@@ -1,4 +1,4 @@
-/*\r
+/*\r
 * Copyright 2008 ZXing authors\r
 *\r
 * Licensed under the Apache License, Version 2.0 (the "License");\r
 * See the License for the specific language governing permissions and\r
 * limitations under the License.\r
 */\r
+using System;\r
 namespace com.google.zxing\r
 {\r
-    using System;\r
-\r
-    /// <summary> A base class which covers the range of exceptions which may occur when encoding a barcode using\r
-    /// the Writer framework.\r
-    /// *\r
-    /// </summary>\r
-    /// <author>  dswitkin@google.com (Daniel Switkin)\r
-    /// \r
-    /// </author>\r
-    public sealed class WriterException : System.Exception\r
-    {\r
-\r
-        public WriterException()\r
-            : base()\r
-        {\r
-        }\r
-\r
-        public WriterException(System.String message)\r
-            : base(message)\r
-        {\r
-        }\r
-    }\r
+       \r
+       /// <summary> A base class which covers the range of exceptions which may occur when encoding a barcode using\r
+       /// the Writer framework.\r
+       /// \r
+       /// </summary>\r
+       /// <author>  dswitkin@google.com (Daniel Switkin)\r
+       /// </author>\r
+       /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
+       /// </author>\r
+       [Serializable]\r
+       public sealed class WriterException:System.Exception\r
+       {\r
+               \r
+               public WriterException():base()\r
+               {\r
+               }\r
+               \r
+               public WriterException(System.String message):base(message)\r
+               {\r
+               }\r
+       }\r
 }
\ No newline at end of file