namespace com.hitrust.util
|
|
{
|
|
using System;
|
|
|
|
public class SharpZipBaseException : ApplicationException
|
|
{
|
|
public SharpZipBaseException()
|
|
{
|
|
}
|
|
|
|
public SharpZipBaseException(string msg) : base(msg)
|
|
{
|
|
}
|
|
|
|
public SharpZipBaseException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|