X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=csharp%2FWriterException.cs;h=e36569e981dbb6b536fc50d4ce09e3a14ea04ab0;hb=af4336d1bb8d6d8a4d34c3ecb48c26d2bb232473;hp=6148a1ad63d62f8e063b5247e263082facd70458;hpb=e35d358134873c3f640672da7cd0c01f02253151;p=zxing.git diff --git a/csharp/WriterException.cs b/csharp/WriterException.cs index 6148a1ad..e36569e9 100755 --- a/csharp/WriterException.cs +++ b/csharp/WriterException.cs @@ -1,4 +1,4 @@ -/* +/* * Copyright 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,28 +13,28 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +using System; namespace com.google.zxing { - using System; - - /// A base class which covers the range of exceptions which may occur when encoding a barcode using - /// the Writer framework. - /// * - /// - /// dswitkin@google.com (Daniel Switkin) - /// - /// - public sealed class WriterException : System.Exception - { - - public WriterException() - : base() - { - } - - public WriterException(System.String message) - : base(message) - { - } - } + + /// A base class which covers the range of exceptions which may occur when encoding a barcode using + /// the Writer framework. + /// + /// + /// dswitkin@google.com (Daniel Switkin) + /// + /// www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source + /// + [Serializable] + public sealed class WriterException:System.Exception + { + + public WriterException():base() + { + } + + public WriterException(System.String message):base(message) + { + } + } } \ No newline at end of file