You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
636 B
34 lines
636 B
using System;
|
|
|
|
#if !NETCF_1_0 && !NETCF_2_0
|
|
using System.Runtime.Serialization;
|
|
#endif
|
|
|
|
namespace Externals.Compression
|
|
{
|
|
|
|
[Serializable]
|
|
internal class ZipBaseException : ApplicationException
|
|
{
|
|
|
|
protected ZipBaseException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
|
|
public ZipBaseException()
|
|
{
|
|
}
|
|
|
|
public ZipBaseException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public ZipBaseException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
}
|