tarexception.cs
来自「全功能c#编译器」· CS 代码 · 共 28 行
CS
28 行
/*
* Created by SharpDevelop.
* User: JohnR
* Date: 23/08/2004
* Time: 12:04 a.m.
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using ICSharpCode.SharpZipLib;
namespace ICSharpCode.SharpZipLib.Tar {
/// <summary>
/// TarExceptions are used for exceptions specific to tar classes and code.
/// </summary>
public class TarException : SharpZipBaseException
{
public TarException()
{
}
public TarException(string message) : base(message)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?