//---------------------------------------------------------------------
// <copyright file="ZipException.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// The use and distribution terms for this software are covered by the
// Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
// which can be found in the file CPL.TXT at the root of this distribution.
// By using this software in any fashion, you are agreeing to be bound by
// the terms of this license.
//
// You must not remove this notice, or any other, from this software.
// </copyright>
// <summary>
// Part of the Deployment Tools Foundation project.
// </summary>
//---------------------------------------------------------------------
namespace Microsoft.Deployment.Compression.Zip{
using System;
using System.IO;
using System.Resources;
using System.Globalization;
using System.Security.Permissions;
using System.Runtime.Serialization;
/// <summary>
/// Exception class for zip operations.
/// </summary>
[Serializable]
public class ZipException : ArchiveException
{
/// <summary>
/// Creates a new ZipException with a specified error message and a reference to the
/// inner exception that is the cause of this exception.
/// </summary>
/// <param name="message">The message that describes the error.</param>
/// <param name="innerException">The exception that is the cause of the current exception. If the
/// innerException parameter is not a null reference (Nothing in Visual Basic), the current exception
/// is raised in a catch block that handles the inner exception.</param>
public ZipException(string message, Exception innerException)
: base(message, innerException) { }
/// <summary>
/// Creates a new ZipException with a specified error message.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public ZipException(string message)
: this(message, null) { }
/// <summary>
/// Creates a new ZipException.
/// </summary>
public ZipException()
: this(null, null) { }
/// <summary>
/// Initializes a new instance of the ZipException class with serialized data.
/// </summary>
/// <param name="info">The SerializationInfo that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The StreamingContext that contains contextual information about the source or destination.</param>
protected ZipException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
/// <summary>
/// Sets the SerializationInfo with information about the exception.
/// </summary>
/// <param name="info">The SerializationInfo that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The StreamingContext that contains contextual information about the source or destination.</param>
[SecurityPermission(SecurityAction.Demand, SerializationFormatter=true)]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
}
}
}
|