System.Xml.Serialization.XmlSerializationReaderCodeGen.WriteCatchException C# (CSharp) Method

WriteCatchException() private method

private WriteCatchException ( Type exceptionType ) : void
exceptionType System.Type
return void
        private void WriteCatchException(Type exceptionType)
        {
            Writer.Indent--;
            Writer.WriteLine("}");
            Writer.Write("catch (");
            Writer.Write(exceptionType.FullName);
            Writer.WriteLine(") {");
        }